MNT Price: $0.90 (-0.39%)

Contract

0xb8360bE175dF384aE204212f2DD6685147D8fB8B
 

Overview

MNT Balance

Mantle Mainnet Network LogoMantle Mainnet Network LogoMantle Mainnet Network Logo0 MNT

MNT Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Age:24H
Reset Filter

Transaction Hash
Block
From
To

There are no matching entries

> 10 Internal Transactions found.

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
845094622025-09-06 9:00:36141 days ago1757149236
0xb8360bE1...147D8fB8B
3,614.64 MNT
843852552025-09-03 12:00:22143 days ago1756900822
0xb8360bE1...147D8fB8B
172.2 MNT
843816932025-09-03 10:01:38144 days ago1756893698
0xb8360bE1...147D8fB8B
35.96 MNT
843351242025-09-02 8:09:20145 days ago1756800560
0xb8360bE1...147D8fB8B
129.02 MNT
843348022025-09-02 7:58:36145 days ago1756799916
0xb8360bE1...147D8fB8B
23.98 MNT
843344272025-09-02 7:46:06145 days ago1756799166
0xb8360bE1...147D8fB8B
52.86 MNT
843340782025-09-02 7:34:28145 days ago1756798468
0xb8360bE1...147D8fB8B
6.92 MNT
843110952025-09-01 18:48:22145 days ago1756752502
0xb8360bE1...147D8fB8B
38.24 MNT
843015422025-09-01 13:29:56145 days ago1756733396
0xb8360bE1...147D8fB8B
10.66 MNT
843013102025-09-01 13:22:12145 days ago1756732932
0xb8360bE1...147D8fB8B
94.5 MNT
842994552025-09-01 12:20:22145 days ago1756729222
0xb8360bE1...147D8fB8B
96.98 MNT
842452062025-08-31 6:12:04147 days ago1756620724
0xb8360bE1...147D8fB8B
15.22 MNT
842401662025-08-31 3:24:04147 days ago1756610644
0xb8360bE1...147D8fB8B
44.14 MNT
842400212025-08-31 3:19:14147 days ago1756610354
0xb8360bE1...147D8fB8B
53.94 MNT
842190782025-08-30 15:41:08147 days ago1756568468
0xb8360bE1...147D8fB8B
22.42 MNT
842097672025-08-30 10:30:46148 days ago1756549846
0xb8360bE1...147D8fB8B
42.64 MNT
842062172025-08-30 8:32:26148 days ago1756542746
0xb8360bE1...147D8fB8B
33.1 MNT
841601822025-08-29 6:57:56149 days ago1756450676
0xb8360bE1...147D8fB8B
16 MNT
841253842025-08-28 11:38:00149 days ago1756381080
0xb8360bE1...147D8fB8B
22.16 MNT
841173112025-08-28 7:08:54150 days ago1756364934
0xb8360bE1...147D8fB8B
21 MNT
841168442025-08-28 6:53:20150 days ago1756364000
0xb8360bE1...147D8fB8B
67.82 MNT
840714022025-08-27 5:38:36151 days ago1756273116
0xb8360bE1...147D8fB8B
26.98 MNT
840487842025-08-26 17:04:40151 days ago1756227880
0xb8360bE1...147D8fB8B
57.9 MNT
840385622025-08-26 11:23:56151 days ago1756207436
0xb8360bE1...147D8fB8B
10.66 MNT
840263302025-08-26 4:36:12152 days ago1756182972
0xb8360bE1...147D8fB8B
16.88 MNT
View All Internal Transactions

Cross-Chain Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
WhitelistClaimETH

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./WhitelistClaim.sol";

contract WhitelistClaimETH is WhitelistClaim {
    constructor(
        bytes32 _merkleRoot,
        uint256 _startTime,
        uint256 _deadline
    ) WhitelistClaim(_merkleRoot, _startTime, _deadline) {}

    function _payOut(uint256 amount, address to) internal override {
        (bool success, ) = to.call{value: amount}("");
        require(success, "WhitelistClaimETH: failed to send funds");
    }

    function _withdraw(address to) internal override {
        (bool success, ) = to.call{value: address(this).balance}("");
        require(success, "WhitelistClaimETH: failed to _withdraw");
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC1271.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC1271 standard signature validation method for
 * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].
 *
 * _Available since v4.1._
 */
interface IERC1271 {
    /**
     * @dev Should return whether the signature provided is valid for the provided data
     * @param hash      Hash of the data to be signed
     * @param signature Signature byte array associated with _data
     */
    function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

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

pragma solidity ^0.8.0;

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, "\x19Ethereum Signed Message:\n32")
            mstore(0x1c, hash)
            message := keccak256(0x00, 0x3c)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, "\x19\x01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            data := keccak256(ptr, 0x42)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Data with intended validator, created from a
     * `validator` and `data` according to the version 0 of EIP-191.
     *
     * See {recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x00", validator, data));
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/interfaces/IERC1271.sol";

abstract contract WhitelistClaim is Ownable, ReentrancyGuard {
    bytes32 public merkleRoot;
    mapping(address => bool) public claimed;
    mapping(address => bool) public invalidated;
    uint256 public startTime;
    uint256 public deadline;

    event XClaim(address indexed account, uint256 amount);
    event XDelegateClaim(
        address indexed delegator,
        address indexed account,
        uint256 amount
    );
    event UpdateMerkleRoot(bytes32 newMerkleRoot);
    event Withdraw(address to);
    event Invalidate(address indexed account, uint256 refund);

    constructor(bytes32 _merkleRoot, uint256 _startTime, uint256 _deadline) {
        merkleRoot = _merkleRoot;
        startTime = _startTime;
        deadline = _deadline;
    }

    receive() external payable {}

    function isWhitelisted(
        address account,
        uint256 amount,
        bytes32[] memory proof
    ) public view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(account, amount));
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }

    modifier validateClaim(
        address account,
        uint256 amount,
        bytes32[] memory proof
    ) {
        require(
            block.timestamp >= startTime,
            "WhitelistClaim: claiming has not started yet"
        );
        require(
            block.timestamp <= deadline,
            "WhitelistClaim: deadline exceeded"
        );
        require(
            isWhitelisted(account, amount, proof),
            "WhitelistClaim: not whitelisted"
        );
        require(!claimed[account], "WhitelistClaim: already claimed");
        require(!invalidated[account], "WhitelistClaim: already invalidated");
        claimed[account] = true;
        _;
    }

    function claim(
        uint256 amount,
        bytes32[] memory proof
    ) external nonReentrant validateClaim(msg.sender, amount, proof) {
        _payOut(amount, msg.sender);
        emit XClaim(msg.sender, amount);
    }

    function delegateClaim(
        address beneficiary,
        uint256 amount,
        bytes32[] memory proof,
        uint256 _deadline,
        bytes calldata sig
    ) external nonReentrant validateClaim(beneficiary, amount, proof) {
        require(block.timestamp <= _deadline, "WhitelistClaim: too late");

        bytes32 hash = keccak256(
            abi.encodePacked(
                beneficiary,
                amount,
                proof,
                _deadline,
                block.chainid,
                msg.sender, // delegator
                address(this)
            )
        );

        // beneficiary must be the signer
        if (isContract(beneficiary)) {
            require(
                IERC1271(beneficiary).isValidSignature(hash, sig) ==
                    bytes4(0x1626ba7e),
                "WhitelistClaim: invalid signature"
            );
        } else {
            require(
                beneficiary ==
                    ECDSA.recover(ECDSA.toEthSignedMessageHash(hash), sig),
                "WhitelistClaim: invalid signature"
            );
        }

        _payOut(amount, msg.sender); // _payout to delegator for part staking
        emit XDelegateClaim(msg.sender, beneficiary, amount);
    }

    /// @dev This virtual function should transfer the specified `amount` of the payment token to the `to` address
    function _payOut(uint256 amount, address to) internal virtual;

    function _withdraw(address to) internal virtual;

    /****************** Admin Functions ******************/
    function withdraw(address to) external onlyOwner nonReentrant {
        _withdraw(to);
        emit Withdraw(to);
    }

    function invalidate(address account, uint256 refund) external onlyOwner nonReentrant {
        require(!claimed[account], "WhitelistClaim: already claimed");
        require(!invalidated[account], "WhitelistClaim: already invalidated");
        invalidated[account] = true;
        if (refund > 0) {
            _payOut(refund, msg.sender);
        }
        emit Invalidate(account, refund);
    }

    function updateMerkleRoot(bytes32 newMerkleRoot) external onlyOwner {
        merkleRoot = newMerkleRoot;
        emit UpdateMerkleRoot(newMerkleRoot);
    }

    function updateDeadline(uint256 _t) external onlyOwner {
        deadline = _t;
    }

    function updateStartTime(uint256 _t) external onlyOwner {
        startTime = _t;
    }

    /****************** View Functions ******************/
    function isTimeValid() external view returns (bool) {
        return block.timestamp >= startTime && block.timestamp <= deadline;
    }

    function isContract(address account) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_deadline","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"refund","type":"uint256"}],"name":"Invalidate","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":false,"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"UpdateMerkleRoot","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"XClaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"XDelegateClaim","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","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":"deadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"_deadline","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"delegateClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"refund","type":"uint256"}],"name":"invalidate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"invalidated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTimeValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_t","type":"uint256"}],"name":"updateDeadline","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_t","type":"uint256"}],"name":"updateStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b5060405161168038038061168083398101604081905261002f916100a4565b82828261003b33610054565b60018055600292909255600555600655506100d2915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806000606084860312156100b957600080fd5b8351925060208401519150604084015190509250925092565b61159f806100e16000396000f3fe6080604052600436106101025760003560e01c80634f74f814116100955780638da5cb5b116100645780638da5cb5b1461029a578063c884ef83146102c2578063f2fde38b146102f2578063faf7a82614610312578063fd2723fd1461033257600080fd5b80634f74f8141461020f57806351cff8d91461024f578063715018a61461026f57806378e979251461028457600080fd5b80632f52ebb7116100d15780632f52ebb71461018f578063418a9c82146101af57806342af1884146101cf5780634783f0ef146101ef57600080fd5b806306bcf02f1461010e57806318cfa4831461013057806329dcb0cf146101505780632eb4a7ab1461017957600080fd5b3661010957005b600080fd5b34801561011a57600080fd5b5061012e610129366004611076565b610347565b005b34801561013c57600080fd5b5061012e61014b3660046110ab565b610354565b34801561015c57600080fd5b5061016660065481565b6040519081526020015b60405180910390f35b34801561018557600080fd5b5061016660025481565b34801561019b57600080fd5b5061012e6101aa366004611186565b610462565b3480156101bb57600080fd5b5061012e6101ca3660046111cd565b6105e8565b3480156101db57600080fd5b5061012e6101ea366004611076565b610956565b3480156101fb57600080fd5b5061012e61020a366004611076565b610963565b34801561021b57600080fd5b5061023f61022a366004611287565b60046020526000908152604090205460ff1681565b6040519015158152602001610170565b34801561025b57600080fd5b5061012e61026a366004611287565b6109a6565b34801561027b57600080fd5b5061012e610a07565b34801561029057600080fd5b5061016660055481565b3480156102a657600080fd5b506000546040516001600160a01b039091168152602001610170565b3480156102ce57600080fd5b5061023f6102dd366004611287565b60036020526000908152604090205460ff1681565b3480156102fe57600080fd5b5061012e61030d366004611287565b610a1b565b34801561031e57600080fd5b5061023f61032d3660046112a2565b610a91565b34801561033e57600080fd5b5061023f610aea565b61034f610b05565b600555565b61035c610b05565b610364610b5f565b6001600160a01b03821660009081526003602052604090205460ff16156103a65760405162461bcd60e51b815260040161039d906112f9565b60405180910390fd5b6001600160a01b03821660009081526004602052604090205460ff16156103df5760405162461bcd60e51b815260040161039d90611330565b6001600160a01b0382166000908152600460205260409020805460ff191660011790558015610412576104128133610bb8565b816001600160a01b03167f70427ccf35ea723b0e36935b79a842af4ab4b2b28fb9a8410971ac84d25158178260405161044d91815260200190565b60405180910390a261045e60018055565b5050565b61046a610b5f565b33828260055442101561048f5760405162461bcd60e51b815260040161039d90611373565b6006544211156104b15760405162461bcd60e51b815260040161039d906113bf565b6104bc838383610a91565b6105085760405162461bcd60e51b815260206004820152601f60248201527f57686974656c697374436c61696d3a206e6f742077686974656c697374656400604482015260640161039d565b6001600160a01b03831660009081526003602052604090205460ff16156105415760405162461bcd60e51b815260040161039d906112f9565b6001600160a01b03831660009081526004602052604090205460ff161561057a5760405162461bcd60e51b815260040161039d90611330565b6001600160a01b0383166000908152600360205260409020805460ff191660011790556105a78533610bb8565b60405185815233907fc7627c78ddc5b824e2bed4b122ec1c29cd2baba6b22141de00fd53d76d7d95b49060200160405180910390a250505061045e60018055565b6105f0610b5f565b8585856005544210156106155760405162461bcd60e51b815260040161039d90611373565b6006544211156106375760405162461bcd60e51b815260040161039d906113bf565b610642838383610a91565b61068e5760405162461bcd60e51b815260206004820152601f60248201527f57686974656c697374436c61696d3a206e6f742077686974656c697374656400604482015260640161039d565b6001600160a01b03831660009081526003602052604090205460ff16156106c75760405162461bcd60e51b815260040161039d906112f9565b6001600160a01b03831660009081526004602052604090205460ff16156107005760405162461bcd60e51b815260040161039d90611330565b6001600160a01b0383166000908152600360205260409020805460ff19166001179055428610156107735760405162461bcd60e51b815260206004820152601860248201527f57686974656c697374436c61696d3a20746f6f206c6174650000000000000000604482015260640161039d565b6000898989894633306040516020016107929796959493929190611400565b6040516020818303038152906040528051906020012090506107b48a3b151590565b1561085857604051630b135d3f60e11b808252906001600160a01b038c1690631626ba7e906107eb9085908b908b90600401611475565b602060405180830381865afa158015610808573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082c91906114ab565b6001600160e01b031916146108535760405162461bcd60e51b815260040161039d906114d5565b6108f7565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000908152601c829052603c90206108c79087878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610c7092505050565b6001600160a01b03168a6001600160a01b0316146108f75760405162461bcd60e51b815260040161039d906114d5565b6109018933610bb8565b6040518981526001600160a01b038b169033907f7b4d8282a37b16c1c683f913e56c76bb3551dc157bd311cc04f660b2a9aaeedd9060200160405180910390a35050505061094e60018055565b505050505050565b61095e610b05565b600655565b61096b610b05565b60028190556040518181527fae8bdbc15b982b030d313524fca26f653a8826332c662cb93c670068172d217e9060200160405180910390a150565b6109ae610b05565b6109b6610b5f565b6109bf81610c94565b6040516001600160a01b03821681527ff67611512e0a2d90c96fd3f08dca4971bc45fba9dc679eabe839a32abbe58a8e9060200160405180910390a1610a0460018055565b50565b610a0f610b05565b610a196000610d46565b565b610a23610b05565b6001600160a01b038116610a885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039d565b610a0481610d46565b6040516bffffffffffffffffffffffff19606085901b166020820152603481018390526000908190605401604051602081830303815290604052805190602001209050610ae18360025483610d96565b95945050505050565b60006005544210158015610b0057506006544211155b905090565b6000546001600160a01b03163314610a195760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161039d565b600260015403610bb15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161039d565b6002600155565b6000816001600160a01b03168360405160006040518083038185875af1925050503d8060008114610c05576040519150601f19603f3d011682016040523d82523d6000602084013e610c0a565b606091505b5050905080610c6b5760405162461bcd60e51b815260206004820152602760248201527f57686974656c697374436c61696d4554483a206661696c656420746f2073656e604482015266642066756e647360c81b606482015260840161039d565b505050565b6000806000610c7f8585610dac565b91509150610c8c81610df1565b509392505050565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ce1576040519150601f19603f3d011682016040523d82523d6000602084013e610ce6565b606091505b505090508061045e5760405162461bcd60e51b815260206004820152602660248201527f57686974656c697374436c61696d4554483a206661696c656420746f205f776960448201526574686472617760d01b606482015260840161039d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600082610da38584610f3b565b14949350505050565b6000808251604103610de25760208301516040840151606085015160001a610dd687828585610f80565b94509450505050610dea565b506000905060025b9250929050565b6000816004811115610e0557610e05611516565b03610e0d5750565b6001816004811115610e2157610e21611516565b03610e6e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161039d565b6002816004811115610e8257610e82611516565b03610ecf5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161039d565b6003816004811115610ee357610ee3611516565b03610a045760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161039d565b600081815b8451811015610c8c57610f6c82868381518110610f5f57610f5f61152c565b6020026020010151611044565b915080610f7881611542565b915050610f40565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115610fb7575060009050600361103b565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561100b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166110345760006001925092505061103b565b9150600090505b94509492505050565b600081831061106057600082815260208490526040902061106f565b60008381526020839052604090205b9392505050565b60006020828403121561108857600080fd5b5035919050565b80356001600160a01b03811681146110a657600080fd5b919050565b600080604083850312156110be57600080fd5b6110c78361108f565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126110fc57600080fd5b8135602067ffffffffffffffff80831115611119576111196110d5565b8260051b604051601f19603f8301168101818110848211171561113e5761113e6110d5565b60405293845285810183019383810192508785111561115c57600080fd5b83870191505b8482101561117b57813583529183019190830190611162565b979650505050505050565b6000806040838503121561119957600080fd5b82359150602083013567ffffffffffffffff8111156111b757600080fd5b6111c3858286016110eb565b9150509250929050565b60008060008060008060a087890312156111e657600080fd5b6111ef8761108f565b955060208701359450604087013567ffffffffffffffff8082111561121357600080fd5b61121f8a838b016110eb565b955060608901359450608089013591508082111561123c57600080fd5b818901915089601f83011261125057600080fd5b81358181111561125f57600080fd5b8a602082850101111561127157600080fd5b6020830194508093505050509295509295509295565b60006020828403121561129957600080fd5b61106f8261108f565b6000806000606084860312156112b757600080fd5b6112c08461108f565b925060208401359150604084013567ffffffffffffffff8111156112e357600080fd5b6112ef868287016110eb565b9150509250925092565b6020808252601f908201527f57686974656c697374436c61696d3a20616c726561647920636c61696d656400604082015260600190565b60208082526023908201527f57686974656c697374436c61696d3a20616c726561647920696e76616c6964616040820152621d195960ea1b606082015260800190565b6020808252602c908201527f57686974656c697374436c61696d3a20636c61696d696e6720686173206e6f7460408201526b081cdd185c9d1959081e595d60a21b606082015260800190565b60208082526021908201527f57686974656c697374436c61696d3a20646561646c696e6520657863656564656040820152601960fa1b606082015260800190565b60006bffffffffffffffffffffffff19808a60601b1683528860148401526034830188516020808b0160005b838110156114485781518552938201939082019060010161142c565b505098825250968701959095525050606091821b83166040850152901b1660548201526068019392505050565b83815260406020820152816040820152818360608301376000818301606090810191909152601f909201601f1916010192915050565b6000602082840312156114bd57600080fd5b81516001600160e01b03198116811461106f57600080fd5b60208082526021908201527f57686974656c697374436c61696d3a20696e76616c6964207369676e617475726040820152606560f81b606082015260800190565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006001820161156257634e487b7160e01b600052601160045260246000fd5b506001019056fea26469706673582212200f5e3ffede5f4e073c161fab124ec5e567737e5364a03ddd3a89ff2aee7a671e64736f6c63430008140033f63bacb783ffb7e9649c84fad91826b8c46f60dc4b5095fd8ee516008f792dba0000000000000000000000000000000000000000000000000000000068a5c6d00000000000000000000000000000000000000000000000000000000068b83bd0

Deployed Bytecode

0x6080604052600436106101025760003560e01c80634f74f814116100955780638da5cb5b116100645780638da5cb5b1461029a578063c884ef83146102c2578063f2fde38b146102f2578063faf7a82614610312578063fd2723fd1461033257600080fd5b80634f74f8141461020f57806351cff8d91461024f578063715018a61461026f57806378e979251461028457600080fd5b80632f52ebb7116100d15780632f52ebb71461018f578063418a9c82146101af57806342af1884146101cf5780634783f0ef146101ef57600080fd5b806306bcf02f1461010e57806318cfa4831461013057806329dcb0cf146101505780632eb4a7ab1461017957600080fd5b3661010957005b600080fd5b34801561011a57600080fd5b5061012e610129366004611076565b610347565b005b34801561013c57600080fd5b5061012e61014b3660046110ab565b610354565b34801561015c57600080fd5b5061016660065481565b6040519081526020015b60405180910390f35b34801561018557600080fd5b5061016660025481565b34801561019b57600080fd5b5061012e6101aa366004611186565b610462565b3480156101bb57600080fd5b5061012e6101ca3660046111cd565b6105e8565b3480156101db57600080fd5b5061012e6101ea366004611076565b610956565b3480156101fb57600080fd5b5061012e61020a366004611076565b610963565b34801561021b57600080fd5b5061023f61022a366004611287565b60046020526000908152604090205460ff1681565b6040519015158152602001610170565b34801561025b57600080fd5b5061012e61026a366004611287565b6109a6565b34801561027b57600080fd5b5061012e610a07565b34801561029057600080fd5b5061016660055481565b3480156102a657600080fd5b506000546040516001600160a01b039091168152602001610170565b3480156102ce57600080fd5b5061023f6102dd366004611287565b60036020526000908152604090205460ff1681565b3480156102fe57600080fd5b5061012e61030d366004611287565b610a1b565b34801561031e57600080fd5b5061023f61032d3660046112a2565b610a91565b34801561033e57600080fd5b5061023f610aea565b61034f610b05565b600555565b61035c610b05565b610364610b5f565b6001600160a01b03821660009081526003602052604090205460ff16156103a65760405162461bcd60e51b815260040161039d906112f9565b60405180910390fd5b6001600160a01b03821660009081526004602052604090205460ff16156103df5760405162461bcd60e51b815260040161039d90611330565b6001600160a01b0382166000908152600460205260409020805460ff191660011790558015610412576104128133610bb8565b816001600160a01b03167f70427ccf35ea723b0e36935b79a842af4ab4b2b28fb9a8410971ac84d25158178260405161044d91815260200190565b60405180910390a261045e60018055565b5050565b61046a610b5f565b33828260055442101561048f5760405162461bcd60e51b815260040161039d90611373565b6006544211156104b15760405162461bcd60e51b815260040161039d906113bf565b6104bc838383610a91565b6105085760405162461bcd60e51b815260206004820152601f60248201527f57686974656c697374436c61696d3a206e6f742077686974656c697374656400604482015260640161039d565b6001600160a01b03831660009081526003602052604090205460ff16156105415760405162461bcd60e51b815260040161039d906112f9565b6001600160a01b03831660009081526004602052604090205460ff161561057a5760405162461bcd60e51b815260040161039d90611330565b6001600160a01b0383166000908152600360205260409020805460ff191660011790556105a78533610bb8565b60405185815233907fc7627c78ddc5b824e2bed4b122ec1c29cd2baba6b22141de00fd53d76d7d95b49060200160405180910390a250505061045e60018055565b6105f0610b5f565b8585856005544210156106155760405162461bcd60e51b815260040161039d90611373565b6006544211156106375760405162461bcd60e51b815260040161039d906113bf565b610642838383610a91565b61068e5760405162461bcd60e51b815260206004820152601f60248201527f57686974656c697374436c61696d3a206e6f742077686974656c697374656400604482015260640161039d565b6001600160a01b03831660009081526003602052604090205460ff16156106c75760405162461bcd60e51b815260040161039d906112f9565b6001600160a01b03831660009081526004602052604090205460ff16156107005760405162461bcd60e51b815260040161039d90611330565b6001600160a01b0383166000908152600360205260409020805460ff19166001179055428610156107735760405162461bcd60e51b815260206004820152601860248201527f57686974656c697374436c61696d3a20746f6f206c6174650000000000000000604482015260640161039d565b6000898989894633306040516020016107929796959493929190611400565b6040516020818303038152906040528051906020012090506107b48a3b151590565b1561085857604051630b135d3f60e11b808252906001600160a01b038c1690631626ba7e906107eb9085908b908b90600401611475565b602060405180830381865afa158015610808573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082c91906114ab565b6001600160e01b031916146108535760405162461bcd60e51b815260040161039d906114d5565b6108f7565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000908152601c829052603c90206108c79087878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610c7092505050565b6001600160a01b03168a6001600160a01b0316146108f75760405162461bcd60e51b815260040161039d906114d5565b6109018933610bb8565b6040518981526001600160a01b038b169033907f7b4d8282a37b16c1c683f913e56c76bb3551dc157bd311cc04f660b2a9aaeedd9060200160405180910390a35050505061094e60018055565b505050505050565b61095e610b05565b600655565b61096b610b05565b60028190556040518181527fae8bdbc15b982b030d313524fca26f653a8826332c662cb93c670068172d217e9060200160405180910390a150565b6109ae610b05565b6109b6610b5f565b6109bf81610c94565b6040516001600160a01b03821681527ff67611512e0a2d90c96fd3f08dca4971bc45fba9dc679eabe839a32abbe58a8e9060200160405180910390a1610a0460018055565b50565b610a0f610b05565b610a196000610d46565b565b610a23610b05565b6001600160a01b038116610a885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039d565b610a0481610d46565b6040516bffffffffffffffffffffffff19606085901b166020820152603481018390526000908190605401604051602081830303815290604052805190602001209050610ae18360025483610d96565b95945050505050565b60006005544210158015610b0057506006544211155b905090565b6000546001600160a01b03163314610a195760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161039d565b600260015403610bb15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161039d565b6002600155565b6000816001600160a01b03168360405160006040518083038185875af1925050503d8060008114610c05576040519150601f19603f3d011682016040523d82523d6000602084013e610c0a565b606091505b5050905080610c6b5760405162461bcd60e51b815260206004820152602760248201527f57686974656c697374436c61696d4554483a206661696c656420746f2073656e604482015266642066756e647360c81b606482015260840161039d565b505050565b6000806000610c7f8585610dac565b91509150610c8c81610df1565b509392505050565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ce1576040519150601f19603f3d011682016040523d82523d6000602084013e610ce6565b606091505b505090508061045e5760405162461bcd60e51b815260206004820152602660248201527f57686974656c697374436c61696d4554483a206661696c656420746f205f776960448201526574686472617760d01b606482015260840161039d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600082610da38584610f3b565b14949350505050565b6000808251604103610de25760208301516040840151606085015160001a610dd687828585610f80565b94509450505050610dea565b506000905060025b9250929050565b6000816004811115610e0557610e05611516565b03610e0d5750565b6001816004811115610e2157610e21611516565b03610e6e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161039d565b6002816004811115610e8257610e82611516565b03610ecf5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161039d565b6003816004811115610ee357610ee3611516565b03610a045760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161039d565b600081815b8451811015610c8c57610f6c82868381518110610f5f57610f5f61152c565b6020026020010151611044565b915080610f7881611542565b915050610f40565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115610fb7575060009050600361103b565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561100b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166110345760006001925092505061103b565b9150600090505b94509492505050565b600081831061106057600082815260208490526040902061106f565b60008381526020839052604090205b9392505050565b60006020828403121561108857600080fd5b5035919050565b80356001600160a01b03811681146110a657600080fd5b919050565b600080604083850312156110be57600080fd5b6110c78361108f565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126110fc57600080fd5b8135602067ffffffffffffffff80831115611119576111196110d5565b8260051b604051601f19603f8301168101818110848211171561113e5761113e6110d5565b60405293845285810183019383810192508785111561115c57600080fd5b83870191505b8482101561117b57813583529183019190830190611162565b979650505050505050565b6000806040838503121561119957600080fd5b82359150602083013567ffffffffffffffff8111156111b757600080fd5b6111c3858286016110eb565b9150509250929050565b60008060008060008060a087890312156111e657600080fd5b6111ef8761108f565b955060208701359450604087013567ffffffffffffffff8082111561121357600080fd5b61121f8a838b016110eb565b955060608901359450608089013591508082111561123c57600080fd5b818901915089601f83011261125057600080fd5b81358181111561125f57600080fd5b8a602082850101111561127157600080fd5b6020830194508093505050509295509295509295565b60006020828403121561129957600080fd5b61106f8261108f565b6000806000606084860312156112b757600080fd5b6112c08461108f565b925060208401359150604084013567ffffffffffffffff8111156112e357600080fd5b6112ef868287016110eb565b9150509250925092565b6020808252601f908201527f57686974656c697374436c61696d3a20616c726561647920636c61696d656400604082015260600190565b60208082526023908201527f57686974656c697374436c61696d3a20616c726561647920696e76616c6964616040820152621d195960ea1b606082015260800190565b6020808252602c908201527f57686974656c697374436c61696d3a20636c61696d696e6720686173206e6f7460408201526b081cdd185c9d1959081e595d60a21b606082015260800190565b60208082526021908201527f57686974656c697374436c61696d3a20646561646c696e6520657863656564656040820152601960fa1b606082015260800190565b60006bffffffffffffffffffffffff19808a60601b1683528860148401526034830188516020808b0160005b838110156114485781518552938201939082019060010161142c565b505098825250968701959095525050606091821b83166040850152901b1660548201526068019392505050565b83815260406020820152816040820152818360608301376000818301606090810191909152601f909201601f1916010192915050565b6000602082840312156114bd57600080fd5b81516001600160e01b03198116811461106f57600080fd5b60208082526021908201527f57686974656c697374436c61696d3a20696e76616c6964207369676e617475726040820152606560f81b606082015260800190565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006001820161156257634e487b7160e01b600052601160045260246000fd5b506001019056fea26469706673582212200f5e3ffede5f4e073c161fab124ec5e567737e5364a03ddd3a89ff2aee7a671e64736f6c63430008140033

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

f63bacb783ffb7e9649c84fad91826b8c46f60dc4b5095fd8ee516008f792dba0000000000000000000000000000000000000000000000000000000068a5c6d00000000000000000000000000000000000000000000000000000000068b83bd0

-----Decoded View---------------
Arg [0] : _merkleRoot (bytes32): 0xf63bacb783ffb7e9649c84fad91826b8c46f60dc4b5095fd8ee516008f792dba
Arg [1] : _startTime (uint256): 1755694800
Arg [2] : _deadline (uint256): 1756904400

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : f63bacb783ffb7e9649c84fad91826b8c46f60dc4b5095fd8ee516008f792dba
Arg [1] : 0000000000000000000000000000000000000000000000000000000068a5c6d0
Arg [2] : 0000000000000000000000000000000000000000000000000000000068b83bd0


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
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.