ETH Price: $3,484.60 (+0.91%)

Contract

0x8235Ed3eAaE46846d6a97726b69F2953d1cd21d9
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim183665162023-10-17 0:27:35435 days ago1697502455IN
0x8235Ed3e...3d1cd21d9
0 ETH0.000765946.82443972
Claim177057352023-07-16 12:05:11528 days ago1689509111IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0016533714.73136214
Claim166825332023-02-22 7:33:35672 days ago1677051215IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0027641424.15027425
Claim166766422023-02-21 11:41:23673 days ago1676979683IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0023968325.19398972
Claim166412362023-02-16 12:17:35678 days ago1676549855IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0029956526.69093315
Claim166238372023-02-14 1:52:59680 days ago1676339579IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0015601216.39907433
Claim166183202023-02-13 7:23:23681 days ago1676273003IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0015004515.77183604
Batch Claim166020062023-02-11 0:41:23683 days ago1676076083IN
0x8235Ed3e...3d1cd21d9
0 ETH0.008061622.47099864
Claim165943562023-02-09 23:04:47684 days ago1675983887IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0055763449.68456847
Claim165895242023-02-09 6:50:59685 days ago1675925459IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0023854421.2540581
Claim165804222023-02-08 0:16:59686 days ago1675815419IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0038226734.05956247
Claim165212292023-01-30 17:47:35694 days ago1675100855IN
0x8235Ed3e...3d1cd21d9
0 ETH0.002233919.90384579
Claim165167132023-01-30 2:40:23695 days ago1675046423IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0013291813.9715687
Claim165022532023-01-28 2:13:35697 days ago1674872015IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0017048614.89291804
Claim164887552023-01-26 4:58:47699 days ago1674709127IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0017527715.61701455
Claim163917322023-01-12 15:51:35712 days ago1673538695IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0020033917.85
Claim163901192023-01-12 10:26:47713 days ago1673519207IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0018567316.5432922
Batch Claim163748112023-01-10 7:07:59715 days ago1673334479IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0016626512.65380704
Claim163710212023-01-09 18:24:59715 days ago1673288699IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0029409826.20380808
Batch Claim163460712023-01-06 6:52:11719 days ago1672987931IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0038048316.28093484
Claim163397592023-01-05 9:41:11720 days ago1672911671IN
0x8235Ed3e...3d1cd21d9
0 ETH0.001832816.01154569
Batch Claim163395892023-01-05 9:06:59720 days ago1672909619IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0030730716.69204993
Claim163380162023-01-05 3:50:59720 days ago1672890659IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0015370116.15614221
Claim163187432023-01-02 11:18:59723 days ago1672658339IN
0x8235Ed3e...3d1cd21d9
0 ETH0.0016980414.83486683
Claim163012512022-12-31 0:45:35725 days ago1672447535IN
0x8235Ed3e...3d1cd21d9
0 ETH0.004000735.64582946
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:
Claimer

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : Claimer.sol
pragma solidity ^0.8.17;

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

contract Claimer is Ownable {
    IERC20 public coinAddress;

    struct CallData {
        uint256 contractId;
        uint256 tokenId;
    }

    struct ClaimInfo {
        bool enabled;
        IERC721 tokens;
        uint256 coinsPerClaim;
        uint64 totalClaimed;
        mapping(uint256 => address) claimed;
    }

    ClaimInfo[] private claims;

    event Setup(
        uint256 indexed claimId,
        IERC721 indexed tokens,
        uint256 coinsPerClaim,
        uint256 totalClaimed
    );
    event Toggle(uint256 indexed claimId, bool enabled);
    event UpdateClaimCoins(uint256 indexed claimId, uint256 coinsPerClaim);

    event Claim(
        uint256 indexed claimId,
        uint256 indexed tokenId,
        address indexed user
    );

    /* how many heartcoin does this contract have */
    function contractBalance() external view returns (uint256) {
        return coinAddress.balanceOf(address(this));
    }

    /* how many heartcoin does the caller have */
    function coinBalance() external view returns (uint256) {
        return coinAddress.balanceOf(msg.sender);
    }

    function setCoinAddress(IERC20 _coinAddress) external onlyOwner {
        coinAddress = _coinAddress;
    }

    function setupClaim(IERC721 tokens, uint256 coinsPerClaim)
        external
        onlyOwner
        returns (uint256)
    {
        uint256 id = claims.length;

        ClaimInfo storage info = claims.push();
        info.enabled = false;
        info.tokens = tokens;
        info.coinsPerClaim = coinsPerClaim;

        emit Setup(id, tokens, coinsPerClaim, 0);
        return id;
    }

    function toggle(uint256 id, bool enabled) external onlyOwner {
        claims[id].enabled = enabled;
        emit Toggle(id, enabled);
    }

    function updateClaimCoins(uint256 id, uint256 coinsPerClaim)
        external
        onlyOwner
    {
        claims[id].coinsPerClaim = coinsPerClaim;
        emit UpdateClaimCoins(id, coinsPerClaim);
    }

    function claim(uint256 id, uint256 tokenId) public {
        ClaimInfo storage info = claims[id]; // revert if out-of-bound;

        require(info.enabled, "Claim not active");
        require(info.tokens.ownerOf(tokenId) == msg.sender, "Not the owner");
        require(info.claimed[tokenId] == address(0), "Token already claimed");
        info.claimed[tokenId] = msg.sender;
        info.totalClaimed += 1;

        SafeERC20.safeTransfer(
            coinAddress,
            msg.sender,
            info.coinsPerClaim * (1 ether)
        );

        emit Claim(id, tokenId, msg.sender);
    }

    function batchClaim(CallData[] calldata _calldata) external {
        for (uint256 i = 0; i < _calldata.length; ++i) {
            claim(_calldata[i].contractId, _calldata[i].tokenId);
        }
    }

    function claimsCount() external view returns (uint256) {
        return claims.length;
    }

    function claimsDetails(uint256 id)
        external
        view
        returns (
            bool,
            IERC721,
            uint256,
            uint256
        )
    {
        ClaimInfo storage info = claims[id]; // revert if out-of-bound;
        return (
            info.enabled,
            info.tokens,
            info.coinsPerClaim,
            info.totalClaimed
        );
    }

    function claimedByToken(uint256 id, uint256 tokenId)
        external
        view
        returns (address)
    {
        return claims[id].claimed[tokenId]; // revert if out-of-bound;
    }

    // DANGER: this will block all claims that use this asset.
    function withdraw(IERC20 asset) external onlyOwner {
        SafeERC20.safeTransfer(
            asset,
            msg.sender,
            asset.balanceOf(address(this))
        );
    }
}

File 2 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 3 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)

pragma solidity ^0.8.0;

import "../token/ERC721/IERC721.sol";

File 4 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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 5 of 11 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";

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

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

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

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

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

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

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

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

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

File 6 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 7 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 8 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 9 of 11 : 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 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 11 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

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

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"claimId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"user","type":"address"}],"name":"Claim","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"claimId","type":"uint256"},{"indexed":true,"internalType":"contract IERC721","name":"tokens","type":"address"},{"indexed":false,"internalType":"uint256","name":"coinsPerClaim","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalClaimed","type":"uint256"}],"name":"Setup","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"claimId","type":"uint256"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"Toggle","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"claimId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"coinsPerClaim","type":"uint256"}],"name":"UpdateClaimCoins","type":"event"},{"inputs":[{"components":[{"internalType":"uint256","name":"contractId","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"internalType":"struct Claimer.CallData[]","name":"_calldata","type":"tuple[]"}],"name":"batchClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimedByToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimsCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"claimsDetails","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"contract IERC721","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"coinAddress","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"coinBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"contract IERC20","name":"_coinAddress","type":"address"}],"name":"setCoinAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC721","name":"tokens","type":"address"},{"internalType":"uint256","name":"coinsPerClaim","type":"uint256"}],"name":"setupClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"coinsPerClaim","type":"uint256"}],"name":"updateClaimCoins","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"asset","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610f5e8061007e6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063b0bdacc611610097578063d26c8a8a11610066578063d26c8a8a14610219578063e470dff114610221578063f2fde38b14610234578063fdc61dd11461024757600080fd5b8063b0bdacc6146101d8578063bbd245ea146101eb578063c3490263146101f3578063d03ec96e1461020657600080fd5b8063715018a6116100d3578063715018a61461018257806374d5d7a41461018a5780638b7afe2e1461019d5780638da5cb5b146101b357600080fd5b806312546e9d1461010557806317bc640a1461011a578063470a520b1461012d57806351cff8d91461016f575b600080fd5b610118610113366004610c92565b61025a565b005b610118610128366004610d15565b6102ba565b61014061013b366004610d45565b610331565b6040805194151585526001600160a01b0390931660208501529183015260608201526080015b60405180910390f35b61011861017d366004610d73565b610396565b610118610416565b610118610198366004610d90565b61042a565b6101a561048d565b604051908152602001610166565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610166565b6101186101e6366004610d73565b610500565b6002546101a5565b610118610201366004610d90565b61052a565b6101c0610214366004610d90565b61077c565b6101a56107c3565b6101a561022f366004610db2565b6107f4565b610118610242366004610d73565b6108cb565b6001546101c0906001600160a01b031681565b60005b818110156102b5576102a583838381811061027a5761027a610dde565b9050604002016000013584848481811061029657610296610dde565b9050604002016020013561052a565b6102ae81610e0a565b905061025d565b505050565b6102c2610941565b80600283815481106102d6576102d6610dde565b6000918252602091829020600490910201805460ff191692151592909217909155604051821515815283917fee59a674cbde74ba95248b39c13fb74beb530f71648fe85faac412b1edad703191015b60405180910390a25050565b60008060008060006002868154811061034c5761034c610dde565b600091825260209091206004909102018054600182015460029092015460ff8216996101009092046001600160a01b0316985091965067ffffffffffffffff909116945092505050565b61039e610941565b6040516370a0823160e01b815230600482015261041390829033906001600160a01b038316906370a0823190602401602060405180830381865afa1580156103ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061040e9190610e23565b61099b565b50565b61041e610941565b61042860006109ed565b565b610432610941565b806002838154811061044657610446610dde565b906000526020600020906004020160010181905550817fd2dc78ebb4a3eb0e81a5c497e7988757e7e0375eb15cc3dc56483354ca16c9fa8260405161032591815260200190565b6001546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a08231906024015b602060405180830381865afa1580156104d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104fb9190610e23565b905090565b610508610941565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60006002838154811061053f5761053f610dde565b60009182526020909120600490910201805490915060ff1661059b5760405162461bcd60e51b815260206004820152601060248201526f436c61696d206e6f742061637469766560801b60448201526064015b60405180910390fd5b80546040516331a9108f60e11b815260048101849052339161010090046001600160a01b031690636352211e90602401602060405180830381865afa1580156105e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060c9190610e3c565b6001600160a01b0316146106525760405162461bcd60e51b815260206004820152600d60248201526c2737ba103a34329037bbb732b960991b6044820152606401610592565b60008281526003820160205260409020546001600160a01b0316156106b15760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e4818db185a5b5959605a1b6044820152606401610592565b6000828152600382016020526040812080546001600160a01b03191633179055600282018054600192906106f090849067ffffffffffffffff16610e59565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550610748600160009054906101000a90046001600160a01b0316338360010154670de0b6b3a764000061040e9190610e81565b6040513390839085907fd79254e5daba749baa8ba954e77bbbb18efef113a8070d00df9a188d8193242690600090a4505050565b60006002838154811061079157610791610dde565b60009182526020808320858452600360049093020191909101905260409020546001600160a01b031690505b92915050565b6001546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a08231906024016104ba565b60006107fe610941565b600280546001810182556000918252600481027f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace810180546001600160a01b03881661010081026001600160a81b03199092169190911782557f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf9092018690556040519293909284917f8563cd8f39e73f35e01fc6a66ccc547027e94d74595592f7d3f39cfa4b7f94cd916108bb91898252602082015260400190565b60405180910390a3509392505050565b6108d3610941565b6001600160a01b0381166109385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610592565b610413816109ed565b6000546001600160a01b031633146104285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610592565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526102b5908490610a3d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610a92826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b0f9092919063ffffffff16565b8051909150156102b55780806020019051810190610ab09190610e98565b6102b55760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610592565b6060610b1e8484600085610b28565b90505b9392505050565b606082471015610b895760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610592565b6001600160a01b0385163b610be05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610592565b600080866001600160a01b03168587604051610bfc9190610ed9565b60006040518083038185875af1925050503d8060008114610c39576040519150601f19603f3d011682016040523d82523d6000602084013e610c3e565b606091505b5091509150610c4e828286610c59565b979650505050505050565b60608315610c68575081610b21565b825115610c785782518084602001fd5b8160405162461bcd60e51b81526004016105929190610ef5565b60008060208385031215610ca557600080fd5b823567ffffffffffffffff80821115610cbd57600080fd5b818501915085601f830112610cd157600080fd5b813581811115610ce057600080fd5b8660208260061b8501011115610cf557600080fd5b60209290920196919550909350505050565b801515811461041357600080fd5b60008060408385031215610d2857600080fd5b823591506020830135610d3a81610d07565b809150509250929050565b600060208284031215610d5757600080fd5b5035919050565b6001600160a01b038116811461041357600080fd5b600060208284031215610d8557600080fd5b8135610b2181610d5e565b60008060408385031215610da357600080fd5b50508035926020909101359150565b60008060408385031215610dc557600080fd5b8235610dd081610d5e565b946020939093013593505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610e1c57610e1c610df4565b5060010190565b600060208284031215610e3557600080fd5b5051919050565b600060208284031215610e4e57600080fd5b8151610b2181610d5e565b67ffffffffffffffff818116838216019080821115610e7a57610e7a610df4565b5092915050565b80820281158282048414176107bd576107bd610df4565b600060208284031215610eaa57600080fd5b8151610b2181610d07565b60005b83811015610ed0578181015183820152602001610eb8565b50506000910152565b60008251610eeb818460208701610eb5565b9190910192915050565b6020815260008251806020840152610f14816040850160208701610eb5565b601f01601f1916919091016040019291505056fea264697066735822122016a8e91d795304c9d7bd989af7082728437d9e8c63642b0d81327f71c1329a7364736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063b0bdacc611610097578063d26c8a8a11610066578063d26c8a8a14610219578063e470dff114610221578063f2fde38b14610234578063fdc61dd11461024757600080fd5b8063b0bdacc6146101d8578063bbd245ea146101eb578063c3490263146101f3578063d03ec96e1461020657600080fd5b8063715018a6116100d3578063715018a61461018257806374d5d7a41461018a5780638b7afe2e1461019d5780638da5cb5b146101b357600080fd5b806312546e9d1461010557806317bc640a1461011a578063470a520b1461012d57806351cff8d91461016f575b600080fd5b610118610113366004610c92565b61025a565b005b610118610128366004610d15565b6102ba565b61014061013b366004610d45565b610331565b6040805194151585526001600160a01b0390931660208501529183015260608201526080015b60405180910390f35b61011861017d366004610d73565b610396565b610118610416565b610118610198366004610d90565b61042a565b6101a561048d565b604051908152602001610166565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610166565b6101186101e6366004610d73565b610500565b6002546101a5565b610118610201366004610d90565b61052a565b6101c0610214366004610d90565b61077c565b6101a56107c3565b6101a561022f366004610db2565b6107f4565b610118610242366004610d73565b6108cb565b6001546101c0906001600160a01b031681565b60005b818110156102b5576102a583838381811061027a5761027a610dde565b9050604002016000013584848481811061029657610296610dde565b9050604002016020013561052a565b6102ae81610e0a565b905061025d565b505050565b6102c2610941565b80600283815481106102d6576102d6610dde565b6000918252602091829020600490910201805460ff191692151592909217909155604051821515815283917fee59a674cbde74ba95248b39c13fb74beb530f71648fe85faac412b1edad703191015b60405180910390a25050565b60008060008060006002868154811061034c5761034c610dde565b600091825260209091206004909102018054600182015460029092015460ff8216996101009092046001600160a01b0316985091965067ffffffffffffffff909116945092505050565b61039e610941565b6040516370a0823160e01b815230600482015261041390829033906001600160a01b038316906370a0823190602401602060405180830381865afa1580156103ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061040e9190610e23565b61099b565b50565b61041e610941565b61042860006109ed565b565b610432610941565b806002838154811061044657610446610dde565b906000526020600020906004020160010181905550817fd2dc78ebb4a3eb0e81a5c497e7988757e7e0375eb15cc3dc56483354ca16c9fa8260405161032591815260200190565b6001546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a08231906024015b602060405180830381865afa1580156104d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104fb9190610e23565b905090565b610508610941565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60006002838154811061053f5761053f610dde565b60009182526020909120600490910201805490915060ff1661059b5760405162461bcd60e51b815260206004820152601060248201526f436c61696d206e6f742061637469766560801b60448201526064015b60405180910390fd5b80546040516331a9108f60e11b815260048101849052339161010090046001600160a01b031690636352211e90602401602060405180830381865afa1580156105e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060c9190610e3c565b6001600160a01b0316146106525760405162461bcd60e51b815260206004820152600d60248201526c2737ba103a34329037bbb732b960991b6044820152606401610592565b60008281526003820160205260409020546001600160a01b0316156106b15760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e4818db185a5b5959605a1b6044820152606401610592565b6000828152600382016020526040812080546001600160a01b03191633179055600282018054600192906106f090849067ffffffffffffffff16610e59565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550610748600160009054906101000a90046001600160a01b0316338360010154670de0b6b3a764000061040e9190610e81565b6040513390839085907fd79254e5daba749baa8ba954e77bbbb18efef113a8070d00df9a188d8193242690600090a4505050565b60006002838154811061079157610791610dde565b60009182526020808320858452600360049093020191909101905260409020546001600160a01b031690505b92915050565b6001546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a08231906024016104ba565b60006107fe610941565b600280546001810182556000918252600481027f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace810180546001600160a01b03881661010081026001600160a81b03199092169190911782557f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf9092018690556040519293909284917f8563cd8f39e73f35e01fc6a66ccc547027e94d74595592f7d3f39cfa4b7f94cd916108bb91898252602082015260400190565b60405180910390a3509392505050565b6108d3610941565b6001600160a01b0381166109385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610592565b610413816109ed565b6000546001600160a01b031633146104285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610592565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526102b5908490610a3d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610a92826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b0f9092919063ffffffff16565b8051909150156102b55780806020019051810190610ab09190610e98565b6102b55760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610592565b6060610b1e8484600085610b28565b90505b9392505050565b606082471015610b895760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610592565b6001600160a01b0385163b610be05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610592565b600080866001600160a01b03168587604051610bfc9190610ed9565b60006040518083038185875af1925050503d8060008114610c39576040519150601f19603f3d011682016040523d82523d6000602084013e610c3e565b606091505b5091509150610c4e828286610c59565b979650505050505050565b60608315610c68575081610b21565b825115610c785782518084602001fd5b8160405162461bcd60e51b81526004016105929190610ef5565b60008060208385031215610ca557600080fd5b823567ffffffffffffffff80821115610cbd57600080fd5b818501915085601f830112610cd157600080fd5b813581811115610ce057600080fd5b8660208260061b8501011115610cf557600080fd5b60209290920196919550909350505050565b801515811461041357600080fd5b60008060408385031215610d2857600080fd5b823591506020830135610d3a81610d07565b809150509250929050565b600060208284031215610d5757600080fd5b5035919050565b6001600160a01b038116811461041357600080fd5b600060208284031215610d8557600080fd5b8135610b2181610d5e565b60008060408385031215610da357600080fd5b50508035926020909101359150565b60008060408385031215610dc557600080fd5b8235610dd081610d5e565b946020939093013593505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610e1c57610e1c610df4565b5060010190565b600060208284031215610e3557600080fd5b5051919050565b600060208284031215610e4e57600080fd5b8151610b2181610d5e565b67ffffffffffffffff818116838216019080821115610e7a57610e7a610df4565b5092915050565b80820281158282048414176107bd576107bd610df4565b600060208284031215610eaa57600080fd5b8151610b2181610d07565b60005b83811015610ed0578181015183820152602001610eb8565b50506000910152565b60008251610eeb818460208701610eb5565b9190910192915050565b6020815260008251806020840152610f14816040850160208701610eb5565b601f01601f1916919091016040019291505056fea264697066735822122016a8e91d795304c9d7bd989af7082728437d9e8c63642b0d81327f71c1329a7364736f6c63430008110033

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.