ETH Price: $2,519.82 (+1.04%)

Contract

0xaC8eaCaD055A1ccea1f40961257054f323796414
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim175108272023-06-19 2:29:35441 days ago1687141775IN
0xaC8eaCaD...323796414
0 ETH0.0009175613.28921329
Claim174569132023-06-11 12:36:47449 days ago1686487007IN
0xaC8eaCaD...323796414
0 ETH0.001272214.76491599
Claim174014262023-06-03 16:46:11457 days ago1685810771IN
0xaC8eaCaD...323796414
0 ETH0.0025591829.68895159
Claim174012802023-06-03 16:16:23457 days ago1685808983IN
0xaC8eaCaD...323796414
0 ETH0.0029105233.78126792
Claim173964052023-06-02 23:49:59457 days ago1685749799IN
0xaC8eaCaD...323796414
0 ETH0.0023676127.46966888
Claim173922112023-06-02 9:36:59458 days ago1685698619IN
0xaC8eaCaD...323796414
0 ETH0.0018121626.24122739
Claim173785272023-05-31 11:21:59460 days ago1685532119IN
0xaC8eaCaD...323796414
0 ETH0.0024543535.53434301
Claim173753132023-05-31 0:30:11460 days ago1685493011IN
0xaC8eaCaD...323796414
0 ETH0.002205931.93718303
Claim173753072023-05-31 0:28:47460 days ago1685492927IN
0xaC8eaCaD...323796414
0 ETH0.0023116933.46988564
Claim173742042023-05-30 20:46:23460 days ago1685479583IN
0xaC8eaCaD...323796414
0 ETH0.0026242538.00075769
Claim173739172023-05-30 19:48:23460 days ago1685476103IN
0xaC8eaCaD...323796414
0 ETH0.0045974166.55200927
Claim173728392023-05-30 16:11:11461 days ago1685463071IN
0xaC8eaCaD...323796414
0 ETH0.004916157.04466155
Claim173721422023-05-30 13:48:59461 days ago1685454539IN
0xaC8eaCaD...323796414
0 ETH0.0043986751.04650923
Claim173720192023-05-30 13:23:59461 days ago1685453039IN
0xaC8eaCaD...323796414
0 ETH0.0042216449
Claim173719502023-05-30 13:09:59461 days ago1685452199IN
0xaC8eaCaD...323796414
0 ETH0.0067045955.71003894
Claim173707682023-05-30 9:09:59461 days ago1685437799IN
0xaC8eaCaD...323796414
0 ETH0.0037594943.63387257
Claim173703392023-05-30 7:42:11461 days ago1685432531IN
0xaC8eaCaD...323796414
0 ETH0.0038859656.25469041
Claim173699892023-05-30 6:31:59461 days ago1685428319IN
0xaC8eaCaD...323796414
0 ETH0.0033987649.21467852
Claim173695762023-05-30 5:08:35461 days ago1685423315IN
0xaC8eaCaD...323796414
0 ETH0.0045587852.9253955
Claim173692832023-05-30 4:09:35461 days ago1685419775IN
0xaC8eaCaD...323796414
0 ETH0.0052803161.27077723
Claim173688072023-05-30 2:33:11461 days ago1685413991IN
0xaC8eaCaD...323796414
0 ETH0.0015831123.90793921
Claim173682932023-05-30 0:47:11461 days ago1685407631IN
0xaC8eaCaD...323796414
0 ETH0.0019197722.28152474
Claim173682802023-05-30 0:44:35461 days ago1685407475IN
0xaC8eaCaD...323796414
0 ETH0.0015396722.29535496
Claim173679082023-05-29 23:29:11461 days ago1685402951IN
0xaC8eaCaD...323796414
0 ETH0.0024893236.03115715
Claim173677532023-05-29 22:57:47461 days ago1685401067IN
0xaC8eaCaD...323796414
0 ETH0.0020870630.21310761
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:
MerkleAirdrop

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : MerkleAirdrop.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract MerkleAirdrop is Ownable {
	IERC20 public immutable TOKEN;
	bytes32 public ROOT;
	uint public START_TIME;
	uint public VESTING_TIME;

	mapping(address => uint) public claimed;

	modifier isInitialized() {
		require(START_TIME != 0, "Not initialized");
		_;
	}

	constructor(IERC20 token) {
		TOKEN = token;
	}

	function init(bytes32 root, uint delta, uint vestingTime) external onlyOwner {
		require(START_TIME == 0, "Already initialized");
		require(vestingTime <= 30 days, "Too long");
		ROOT = root;
		// delta defines an amount users can claim at launch
		START_TIME = block.timestamp - delta;
		VESTING_TIME = vestingTime + delta;
	}

	function claim(uint amount, bytes32[] calldata proof) external isInitialized {
		bytes32 leaf = keccak256(abi.encodePacked(msg.sender, amount));
		require(MerkleProof.verify(proof, ROOT, leaf), "Invalid proof");
		uint amountOut = claimable(msg.sender, amount);
		claimed[msg.sender] += amountOut;
		TOKEN.transfer(msg.sender, amountOut);
	}

	function delayedEmergencyWithdraw() external onlyOwner {
		require(block.timestamp >= START_TIME + 60 days, "Too early");
		TOKEN.transfer(msg.sender, TOKEN.balanceOf(address(this)));
		START_TIME = 0; // not initialized
	}

	function claimable(address user, uint amount) public view isInitialized returns (uint) {
		uint total = amount * (block.timestamp - START_TIME) / VESTING_TIME;
		if (total > amount) total = amount;
		return total - claimed[user];
	}
}

File 2 of 5 : 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 3 of 5 : 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 4 of 5 : 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 5 of 5 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (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 rebuild 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 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 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 for 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) {
            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 rebuild 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 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 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 for 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) {
            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)
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"ROOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VESTING_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"delayedEmergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"},{"internalType":"uint256","name":"delta","type":"uint256"},{"internalType":"uint256","name":"vestingTime","type":"uint256"}],"name":"init","outputs":[],"stateMutability":"nonpayable","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b506040516200165d3803806200165d8339818101604052810190620000379190620001dc565b620000576200004b6200009260201b60201c565b6200009a60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050506200020e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620001908262000163565b9050919050565b6000620001a48262000183565b9050919050565b620001b68162000197565b8114620001c257600080fd5b50565b600081519050620001d681620001ab565b92915050565b600060208284031215620001f557620001f46200015e565b5b60006200020584828501620001c5565b91505092915050565b60805161141e6200023f6000396000818161038201528181610483015281816104c001526106af015261141e6000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806382bfefc81161007157806382bfefc8146101555780638da5cb5b14610173578063c884ef8314610191578063ddaa26ad146101c1578063f2fde38b146101df578063f32199bb146101fb576100b4565b80630dea38b6146100b95780632f52ebb7146100d757806340b40a9c146100f35780635909c12f146100fd57806360efe3341461011b578063715018a61461014b575b600080fd5b6100c1610217565b6040516100ce9190610a70565b60405180910390f35b6100f160048036038101906100ec9190610b26565b61021d565b005b6100fb610426565b005b6101056105c3565b6040516101129190610b9f565b60405180910390f35b61013560048036038101906101309190610c18565b6105c9565b6040516101429190610a70565b60405180910390f35b610153610699565b005b61015d6106ad565b60405161016a9190610cb7565b60405180910390f35b61017b6106d1565b6040516101889190610ce1565b60405180910390f35b6101ab60048036038101906101a69190610cfc565b6106fa565b6040516101b89190610a70565b60405180910390f35b6101c9610712565b6040516101d69190610a70565b60405180910390f35b6101f960048036038101906101f49190610cfc565b610718565b005b61021560048036038101906102109190610d55565b61079b565b005b60035481565b600060025403610262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161025990610e05565b60405180910390fd5b60003384604051602001610277929190610e8e565b6040516020818303038152906040528051906020012090506102dd838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506001548361085e565b61031c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031390610f06565b60405180910390fd5b600061032833866105c9565b905080600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546103799190610f55565b925050819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016103db929190610f89565b6020604051808303816000875af11580156103fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061041e9190610fea565b505050505050565b61042e610875565b624f1a0060025461043f9190610f55565b421015610481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047890611063565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb337f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105179190610ce1565b602060405180830381865afa158015610534573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105589190611098565b6040518363ffffffff1660e01b8152600401610575929190610f89565b6020604051808303816000875af1158015610594573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105b89190610fea565b506000600281905550565b60015481565b6000806002540361060f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060690610e05565b60405180910390fd5b60006003546002544261062291906110c5565b8461062d91906110f9565b610637919061116a565b905082811115610645578290505b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548161069091906110c5565b91505092915050565b6106a1610875565b6106ab60006108f3565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60046020528060005260406000206000915090505481565b60025481565b610720610875565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361078f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107869061120d565b60405180910390fd5b610798816108f3565b50565b6107a3610875565b6000600254146107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df90611279565b60405180910390fd5b62278d0081111561082e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610825906112e5565b60405180910390fd5b82600181905550814261084191906110c5565b60028190555081816108539190610f55565b600381905550505050565b60008261086b85846109b7565b1490509392505050565b61087d610a0d565b73ffffffffffffffffffffffffffffffffffffffff1661089b6106d1565b73ffffffffffffffffffffffffffffffffffffffff16146108f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e890611351565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008082905060005b8451811015610a02576109ed828683815181106109e0576109df611371565b5b6020026020010151610a15565b915080806109fa906113a0565b9150506109c0565b508091505092915050565b600033905090565b6000818310610a2d57610a288284610a40565b610a38565b610a378383610a40565b5b905092915050565b600082600052816020526040600020905092915050565b6000819050919050565b610a6a81610a57565b82525050565b6000602082019050610a856000830184610a61565b92915050565b600080fd5b600080fd5b610a9e81610a57565b8114610aa957600080fd5b50565b600081359050610abb81610a95565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112610ae657610ae5610ac1565b5b8235905067ffffffffffffffff811115610b0357610b02610ac6565b5b602083019150836020820283011115610b1f57610b1e610acb565b5b9250929050565b600080600060408486031215610b3f57610b3e610a8b565b5b6000610b4d86828701610aac565b935050602084013567ffffffffffffffff811115610b6e57610b6d610a90565b5b610b7a86828701610ad0565b92509250509250925092565b6000819050919050565b610b9981610b86565b82525050565b6000602082019050610bb46000830184610b90565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610be582610bba565b9050919050565b610bf581610bda565b8114610c0057600080fd5b50565b600081359050610c1281610bec565b92915050565b60008060408385031215610c2f57610c2e610a8b565b5b6000610c3d85828601610c03565b9250506020610c4e85828601610aac565b9150509250929050565b6000819050919050565b6000610c7d610c78610c7384610bba565b610c58565b610bba565b9050919050565b6000610c8f82610c62565b9050919050565b6000610ca182610c84565b9050919050565b610cb181610c96565b82525050565b6000602082019050610ccc6000830184610ca8565b92915050565b610cdb81610bda565b82525050565b6000602082019050610cf66000830184610cd2565b92915050565b600060208284031215610d1257610d11610a8b565b5b6000610d2084828501610c03565b91505092915050565b610d3281610b86565b8114610d3d57600080fd5b50565b600081359050610d4f81610d29565b92915050565b600080600060608486031215610d6e57610d6d610a8b565b5b6000610d7c86828701610d40565b9350506020610d8d86828701610aac565b9250506040610d9e86828701610aac565b9150509250925092565b600082825260208201905092915050565b7f4e6f7420696e697469616c697a65640000000000000000000000000000000000600082015250565b6000610def600f83610da8565b9150610dfa82610db9565b602082019050919050565b60006020820190508181036000830152610e1e81610de2565b9050919050565b60008160601b9050919050565b6000610e3d82610e25565b9050919050565b6000610e4f82610e32565b9050919050565b610e67610e6282610bda565b610e44565b82525050565b6000819050919050565b610e88610e8382610a57565b610e6d565b82525050565b6000610e9a8285610e56565b601482019150610eaa8284610e77565b6020820191508190509392505050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000610ef0600d83610da8565b9150610efb82610eba565b602082019050919050565b60006020820190508181036000830152610f1f81610ee3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610f6082610a57565b9150610f6b83610a57565b9250828201905080821115610f8357610f82610f26565b5b92915050565b6000604082019050610f9e6000830185610cd2565b610fab6020830184610a61565b9392505050565b60008115159050919050565b610fc781610fb2565b8114610fd257600080fd5b50565b600081519050610fe481610fbe565b92915050565b60006020828403121561100057610fff610a8b565b5b600061100e84828501610fd5565b91505092915050565b7f546f6f206561726c790000000000000000000000000000000000000000000000600082015250565b600061104d600983610da8565b915061105882611017565b602082019050919050565b6000602082019050818103600083015261107c81611040565b9050919050565b60008151905061109281610a95565b92915050565b6000602082840312156110ae576110ad610a8b565b5b60006110bc84828501611083565b91505092915050565b60006110d082610a57565b91506110db83610a57565b92508282039050818111156110f3576110f2610f26565b5b92915050565b600061110482610a57565b915061110f83610a57565b925082820261111d81610a57565b9150828204841483151761113457611133610f26565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061117582610a57565b915061118083610a57565b9250826111905761118f61113b565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006111f7602683610da8565b91506112028261119b565b604082019050919050565b60006020820190508181036000830152611226816111ea565b9050919050565b7f416c726561647920696e697469616c697a656400000000000000000000000000600082015250565b6000611263601383610da8565b915061126e8261122d565b602082019050919050565b6000602082019050818103600083015261129281611256565b9050919050565b7f546f6f206c6f6e67000000000000000000000000000000000000000000000000600082015250565b60006112cf600883610da8565b91506112da82611299565b602082019050919050565b600060208201905081810360008301526112fe816112c2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061133b602083610da8565b915061134682611305565b602082019050919050565b6000602082019050818103600083015261136a8161132e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006113ab82610a57565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036113dd576113dc610f26565b5b60018201905091905056fea2646970667358221220f193e9695842c896b70bb096e0809d37d61df7c358949ce957ae347f5dba444a64736f6c63430008120033000000000000000000000000df121180af07cb906d970799627a430d2440c36d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806382bfefc81161007157806382bfefc8146101555780638da5cb5b14610173578063c884ef8314610191578063ddaa26ad146101c1578063f2fde38b146101df578063f32199bb146101fb576100b4565b80630dea38b6146100b95780632f52ebb7146100d757806340b40a9c146100f35780635909c12f146100fd57806360efe3341461011b578063715018a61461014b575b600080fd5b6100c1610217565b6040516100ce9190610a70565b60405180910390f35b6100f160048036038101906100ec9190610b26565b61021d565b005b6100fb610426565b005b6101056105c3565b6040516101129190610b9f565b60405180910390f35b61013560048036038101906101309190610c18565b6105c9565b6040516101429190610a70565b60405180910390f35b610153610699565b005b61015d6106ad565b60405161016a9190610cb7565b60405180910390f35b61017b6106d1565b6040516101889190610ce1565b60405180910390f35b6101ab60048036038101906101a69190610cfc565b6106fa565b6040516101b89190610a70565b60405180910390f35b6101c9610712565b6040516101d69190610a70565b60405180910390f35b6101f960048036038101906101f49190610cfc565b610718565b005b61021560048036038101906102109190610d55565b61079b565b005b60035481565b600060025403610262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161025990610e05565b60405180910390fd5b60003384604051602001610277929190610e8e565b6040516020818303038152906040528051906020012090506102dd838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506001548361085e565b61031c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031390610f06565b60405180910390fd5b600061032833866105c9565b905080600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546103799190610f55565b925050819055507f000000000000000000000000df121180af07cb906d970799627a430d2440c36d73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016103db929190610f89565b6020604051808303816000875af11580156103fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061041e9190610fea565b505050505050565b61042e610875565b624f1a0060025461043f9190610f55565b421015610481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047890611063565b60405180910390fd5b7f000000000000000000000000df121180af07cb906d970799627a430d2440c36d73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb337f000000000000000000000000df121180af07cb906d970799627a430d2440c36d73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105179190610ce1565b602060405180830381865afa158015610534573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105589190611098565b6040518363ffffffff1660e01b8152600401610575929190610f89565b6020604051808303816000875af1158015610594573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105b89190610fea565b506000600281905550565b60015481565b6000806002540361060f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060690610e05565b60405180910390fd5b60006003546002544261062291906110c5565b8461062d91906110f9565b610637919061116a565b905082811115610645578290505b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548161069091906110c5565b91505092915050565b6106a1610875565b6106ab60006108f3565b565b7f000000000000000000000000df121180af07cb906d970799627a430d2440c36d81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60046020528060005260406000206000915090505481565b60025481565b610720610875565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361078f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107869061120d565b60405180910390fd5b610798816108f3565b50565b6107a3610875565b6000600254146107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df90611279565b60405180910390fd5b62278d0081111561082e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610825906112e5565b60405180910390fd5b82600181905550814261084191906110c5565b60028190555081816108539190610f55565b600381905550505050565b60008261086b85846109b7565b1490509392505050565b61087d610a0d565b73ffffffffffffffffffffffffffffffffffffffff1661089b6106d1565b73ffffffffffffffffffffffffffffffffffffffff16146108f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e890611351565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008082905060005b8451811015610a02576109ed828683815181106109e0576109df611371565b5b6020026020010151610a15565b915080806109fa906113a0565b9150506109c0565b508091505092915050565b600033905090565b6000818310610a2d57610a288284610a40565b610a38565b610a378383610a40565b5b905092915050565b600082600052816020526040600020905092915050565b6000819050919050565b610a6a81610a57565b82525050565b6000602082019050610a856000830184610a61565b92915050565b600080fd5b600080fd5b610a9e81610a57565b8114610aa957600080fd5b50565b600081359050610abb81610a95565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112610ae657610ae5610ac1565b5b8235905067ffffffffffffffff811115610b0357610b02610ac6565b5b602083019150836020820283011115610b1f57610b1e610acb565b5b9250929050565b600080600060408486031215610b3f57610b3e610a8b565b5b6000610b4d86828701610aac565b935050602084013567ffffffffffffffff811115610b6e57610b6d610a90565b5b610b7a86828701610ad0565b92509250509250925092565b6000819050919050565b610b9981610b86565b82525050565b6000602082019050610bb46000830184610b90565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610be582610bba565b9050919050565b610bf581610bda565b8114610c0057600080fd5b50565b600081359050610c1281610bec565b92915050565b60008060408385031215610c2f57610c2e610a8b565b5b6000610c3d85828601610c03565b9250506020610c4e85828601610aac565b9150509250929050565b6000819050919050565b6000610c7d610c78610c7384610bba565b610c58565b610bba565b9050919050565b6000610c8f82610c62565b9050919050565b6000610ca182610c84565b9050919050565b610cb181610c96565b82525050565b6000602082019050610ccc6000830184610ca8565b92915050565b610cdb81610bda565b82525050565b6000602082019050610cf66000830184610cd2565b92915050565b600060208284031215610d1257610d11610a8b565b5b6000610d2084828501610c03565b91505092915050565b610d3281610b86565b8114610d3d57600080fd5b50565b600081359050610d4f81610d29565b92915050565b600080600060608486031215610d6e57610d6d610a8b565b5b6000610d7c86828701610d40565b9350506020610d8d86828701610aac565b9250506040610d9e86828701610aac565b9150509250925092565b600082825260208201905092915050565b7f4e6f7420696e697469616c697a65640000000000000000000000000000000000600082015250565b6000610def600f83610da8565b9150610dfa82610db9565b602082019050919050565b60006020820190508181036000830152610e1e81610de2565b9050919050565b60008160601b9050919050565b6000610e3d82610e25565b9050919050565b6000610e4f82610e32565b9050919050565b610e67610e6282610bda565b610e44565b82525050565b6000819050919050565b610e88610e8382610a57565b610e6d565b82525050565b6000610e9a8285610e56565b601482019150610eaa8284610e77565b6020820191508190509392505050565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b6000610ef0600d83610da8565b9150610efb82610eba565b602082019050919050565b60006020820190508181036000830152610f1f81610ee3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610f6082610a57565b9150610f6b83610a57565b9250828201905080821115610f8357610f82610f26565b5b92915050565b6000604082019050610f9e6000830185610cd2565b610fab6020830184610a61565b9392505050565b60008115159050919050565b610fc781610fb2565b8114610fd257600080fd5b50565b600081519050610fe481610fbe565b92915050565b60006020828403121561100057610fff610a8b565b5b600061100e84828501610fd5565b91505092915050565b7f546f6f206561726c790000000000000000000000000000000000000000000000600082015250565b600061104d600983610da8565b915061105882611017565b602082019050919050565b6000602082019050818103600083015261107c81611040565b9050919050565b60008151905061109281610a95565b92915050565b6000602082840312156110ae576110ad610a8b565b5b60006110bc84828501611083565b91505092915050565b60006110d082610a57565b91506110db83610a57565b92508282039050818111156110f3576110f2610f26565b5b92915050565b600061110482610a57565b915061110f83610a57565b925082820261111d81610a57565b9150828204841483151761113457611133610f26565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061117582610a57565b915061118083610a57565b9250826111905761118f61113b565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006111f7602683610da8565b91506112028261119b565b604082019050919050565b60006020820190508181036000830152611226816111ea565b9050919050565b7f416c726561647920696e697469616c697a656400000000000000000000000000600082015250565b6000611263601383610da8565b915061126e8261122d565b602082019050919050565b6000602082019050818103600083015261129281611256565b9050919050565b7f546f6f206c6f6e67000000000000000000000000000000000000000000000000600082015250565b60006112cf600883610da8565b91506112da82611299565b602082019050919050565b600060208201905081810360008301526112fe816112c2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061133b602083610da8565b915061134682611305565b602082019050919050565b6000602082019050818103600083015261136a8161132e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006113ab82610a57565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036113dd576113dc610f26565b5b60018201905091905056fea2646970667358221220f193e9695842c896b70bb096e0809d37d61df7c358949ce957ae347f5dba444a64736f6c63430008120033

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

000000000000000000000000df121180af07cb906d970799627a430d2440c36d

-----Decoded View---------------
Arg [0] : token (address): 0xDF121180Af07cb906d970799627A430D2440C36D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000df121180af07cb906d970799627a430d2440c36d


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.