ETH Price: $3,451.63 (-0.69%)
Gas: 2 Gwei

Contract

0xb27198a99E3ae693f4dD14CFee89E98eaF413263
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Last Txn Sent

No transactions sent

First Txn Sent

No transactions sent

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer And Des...164061842023-01-14 16:17:35556 days ago1673713055IN
0xb27198a9...eaF413263
0 ETH0.0013834823.03931918
Claim162582002022-12-25 0:32:47577 days ago1671928367IN
0xb27198a9...eaF413263
0 ETH0.0011058311.36103112
Claim161438212022-12-09 1:18:23593 days ago1670548703IN
0xb27198a9...eaF413263
0 ETH0.0014085717.54965853
Claim159121262022-11-06 16:18:59625 days ago1667751539IN
0xb27198a9...eaF413263
0 ETH0.0016151916.58753945
Claim159083962022-11-06 3:49:35625 days ago1667706575IN
0xb27198a9...eaF413263
0 ETH0.0008275310.31121665
Claim158742992022-11-01 9:30:35630 days ago1667295035IN
0xb27198a9...eaF413263
0 ETH0.000845610.53292894
Claim158663482022-10-31 6:48:59631 days ago1667198939IN
0xb27198a9...eaF413263
0 ETH0.000658418.20145563
Claim158651572022-10-31 2:48:47632 days ago1667184527IN
0xb27198a9...eaF413263
0 ETH0.000591167.36648466
Claim158651382022-10-31 2:44:59632 days ago1667184299IN
0xb27198a9...eaF413263
0 ETH0.000709288.83729501
Claim157580412022-10-16 3:38:11646 days ago1665891491IN
0xb27198a9...eaF413263
0 ETH0.001165214.52909431
Claim157580402022-10-16 3:37:59646 days ago1665891479IN
0xb27198a9...eaF413263
0 ETH0.0012154115.14425165
Claim157473432022-10-14 15:48:11648 days ago1665762491IN
0xb27198a9...eaF413263
0 ETH0.0016252816.69937433
Claim155357862022-09-15 0:03:36678 days ago1663200216IN
0xb27198a9...eaF413263
0 ETH0.0016972521.16329591
Claim154279992022-08-28 13:07:03695 days ago1661692023IN
0xb27198a9...eaF413263
0 ETH0.000360354.48977576
Claim154252622022-08-28 2:34:55696 days ago1661654095IN
0xb27198a9...eaF413263
0 ETH0.000516926.44060861
Claim154242302022-08-27 22:38:17696 days ago1661639897IN
0xb27198a9...eaF413263
0 ETH0.00046684.79389146
Claim154194612022-08-27 4:17:59696 days ago1661573879IN
0xb27198a9...eaF413263
0 ETH0.000386314
Claim154089132022-08-25 11:43:15698 days ago1661427795IN
0xb27198a9...eaF413263
0 ETH0.000627026.43882405
Claim154088922022-08-25 11:38:58698 days ago1661427538IN
0xb27198a9...eaF413263
0 ETH0.00065338.14472516
Claim154033282022-08-24 14:01:29699 days ago1661349689IN
0xb27198a9...eaF413263
0 ETH0.0009754912.27672698
Claim154032992022-08-24 13:55:49699 days ago1661349349IN
0xb27198a9...eaF413263
0 ETH0.000675868.41988625
Claim153774392022-08-20 11:44:34703 days ago1660995874IN
0xb27198a9...eaF413263
0 ETH0.000275282.9
Claim153718102022-08-19 14:26:37704 days ago1660919197IN
0xb27198a9...eaF413263
0 ETH0.0016085720.04108461
Claim153700652022-08-19 7:41:20704 days ago1660894880IN
0xb27198a9...eaF413263
0 ETH0.0017183117.65017012
Claim153683042022-08-19 0:59:23705 days ago1660870763IN
0xb27198a9...eaF413263
0 ETH0.0013747517.11976915
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
164061842023-01-14 16:17:35556 days ago1673713055
0xb27198a9...eaF413263
0 ETH
Loading...
Loading
Contract Self Destruct called at Txn Hash 0xd1914cd0ce3f1aed24745891c88e8601f74794415927bc062b1a85b1db788dad


Contract Source Code Verified (Exact Match)

Contract Name:
MerkleDistributor

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license
File 1 of 5 : MerkleDistributor.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "MerkleProof.sol";
import "IERC20.sol";
import "Ownable.sol";

contract MerkleDistributor is Ownable {
    address public FRZtoken;
    bytes32 public immutable merkleRoot;
    bool private isInitialized = false;
    uint256 public immutable selfDestructDate;

    // This is a packed array of booleans.
    mapping(uint256 => uint256) private claimedBitMap;

    event Claimed(uint256 index, address indexed account, uint256 amount);

    constructor(bytes32 merkleRoot_) {
        merkleRoot = merkleRoot_;
        selfDestructDate = block.timestamp + (183 * 86400);
    }

    function initialize(address _token) external onlyOwner {
        require(isInitialized == false, "Contract already initialize");
        isInitialized = true;
        FRZtoken = _token;
    }

    function isClaimed(uint256 index) public view returns (bool) {
        uint256 claimedWordIndex = index / 256;
        uint256 claimedBitIndex = index % 256;
        uint256 claimedWord = claimedBitMap[claimedWordIndex];
        uint256 mask = (1 << claimedBitIndex);
        return claimedWord & mask == mask;
    }

    function _setClaimed(uint256 index) private {
        uint256 claimedWordIndex = index / 256;
        uint256 claimedBitIndex = index % 256;
        claimedBitMap[claimedWordIndex] =
            claimedBitMap[claimedWordIndex] |
            (1 << claimedBitIndex);
    }

    function claim(
        uint256 index,
        address account,
        uint256 amount,
        bytes32[] calldata merkleProof
    ) external {
        require(isInitialized == true);
        require(!isClaimed(index), "MerkleDistributor: Drop already claimed.");

        // Verify the merkle proof.
        bytes32 node = keccak256(abi.encodePacked(index, account, amount));
        require(
            MerkleProof.verify(merkleProof, merkleRoot, node),
            "MerkleDistributor: Invalid proof."
        );

        // Mark it claimed and send the token.
        _setClaimed(index);
        require(
            IERC20(FRZtoken).transfer(account, amount),
            "MerkleDistributor: Transfer failed."
        );

        emit Claimed(index, account, amount);
    }

    /// @dev after 6 months owner can transfer remaining token and destruct the contract
    function transferAndDestruct() external onlyOwner {
        require(block.timestamp > selfDestructDate, "Too soon to do that");
        address _owner = owner();
        uint256 remainingToken = IERC20(FRZtoken).balanceOf(address(this));
        IERC20(FRZtoken).transfer(_owner, remainingToken);
        selfdestruct(payable(_owner));
    }
}

File 2 of 5 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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.
 */
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 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b)
        private
        pure
        returns (bytes32 value)
    {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 3 of 5 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

File 4 of 5 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "Context.sol";

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

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

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

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

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

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

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

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

File 5 of 5 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"FRZtoken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"isClaimed","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":"selfDestructDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferAndDestruct","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526001805460ff60a01b1916905534801561001d57600080fd5b50604051610c1e380380610c1e83398101604081905261003c916100b0565b61004533610060565b60808190526100574262f142806100c9565b60a052506100ef565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100c257600080fd5b5051919050565b600082198211156100ea57634e487b7160e01b600052601160045260246000fd5b500190565b60805160a051610afe6101206000396000818160f701526104c601526000818160bd01526102b00152610afe6000f3fe608060405234801561001057600080fd5b506004361061009e5760003560e01c80638da5cb5b116100665780638da5cb5b14610129578063942172571461014e5780639e34070f14610161578063c4d66de814610184578063f2fde38b1461019757600080fd5b80632e7ba6ef146100a35780632eb4a7ab146100b85780634a34d9a3146100f2578063715018a6146101195780637791dc6b14610121575b600080fd5b6100b66100b1366004610909565b6101aa565b005b6100df7f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020015b60405180910390f35b6100df7f000000000000000000000000000000000000000000000000000000000000000081565b6100b6610464565b6100b661049a565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016100e9565b600154610136906001600160a01b031681565b61017461016f3660046109a0565b61064c565b60405190151581526020016100e9565b6100b66101923660046109b9565b61068d565b6100b66101a53660046109b9565b61073a565b60018054600160a01b900460ff161515146101c457600080fd5b6101cd8561064c565b156102305760405162461bcd60e51b815260206004820152602860248201527f4d65726b6c654469737472696275746f723a2044726f7020616c72656164792060448201526731b630b4b6b2b21760c11b60648201526084015b60405180910390fd5b60408051602081018790526bffffffffffffffffffffffff19606087901b1691810191909152605481018490526000906074016040516020818303038152906040528051906020012090506102db8383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152507f000000000000000000000000000000000000000000000000000000000000000092508591506107d59050565b6103315760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b6064820152608401610227565b61033a866107eb565b60015460405163a9059cbb60e01b81526001600160a01b038781166004830152602482018790529091169063a9059cbb90604401602060405180830381600087803b15801561038857600080fd5b505af115801561039c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c091906109db565b6104185760405162461bcd60e51b815260206004820152602360248201527f4d65726b6c654469737472696275746f723a205472616e73666572206661696c60448201526232b21760e91b6064820152608401610227565b60408051878152602081018690526001600160a01b038716917f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed026910160405180910390a2505050505050565b6000546001600160a01b0316331461048e5760405162461bcd60e51b8152600401610227906109fd565b6104986000610829565b565b6000546001600160a01b031633146104c45760405162461bcd60e51b8152600401610227906109fd565b7f000000000000000000000000000000000000000000000000000000000000000042116105295760405162461bcd60e51b8152602060048201526013602482015272151bdbc81cdbdbdb881d1bc8191bc81d1a185d606a1b6044820152606401610227565b600080546001600160a01b03166001546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b15801561057f57600080fd5b505afa158015610593573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105b79190610a32565b60015460405163a9059cbb60e01b81526001600160a01b0385811660048301526024820184905292935091169063a9059cbb90604401602060405180830381600087803b15801561060757600080fd5b505af115801561061b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061063f91906109db565b50816001600160a01b0316ff5b60008061065b61010084610a61565b9050600061066b61010085610a75565b60009283526002602052604090922054600190921b9182169091149392505050565b6000546001600160a01b031633146106b75760405162461bcd60e51b8152600401610227906109fd565b600154600160a01b900460ff16156107115760405162461bcd60e51b815260206004820152601b60248201527f436f6e747261637420616c726561647920696e697469616c697a6500000000006044820152606401610227565b600180546001600160a01b039092166001600160a81b031990921691909117600160a01b179055565b6000546001600160a01b031633146107645760405162461bcd60e51b8152600401610227906109fd565b6001600160a01b0381166107c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610227565b6107d281610829565b50565b6000826107e28584610879565b14949350505050565b60006107f961010083610a61565b9050600061080961010084610a75565b6000928352600260205260409092208054600190931b9092179091555050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081815b84518110156108e557600085828151811061089b5761089b610a89565b602002602001015190508083116108c157600083815260208290526040902092506108d2565b600081815260208490526040902092505b50806108dd81610a9f565b91505061087e565b509392505050565b80356001600160a01b038116811461090457600080fd5b919050565b60008060008060006080868803121561092157600080fd5b85359450610931602087016108ed565b935060408601359250606086013567ffffffffffffffff8082111561095557600080fd5b818801915088601f83011261096957600080fd5b81358181111561097857600080fd5b8960208260051b850101111561098d57600080fd5b9699959850939650602001949392505050565b6000602082840312156109b257600080fd5b5035919050565b6000602082840312156109cb57600080fd5b6109d4826108ed565b9392505050565b6000602082840312156109ed57600080fd5b815180151581146109d457600080fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610a4457600080fd5b5051919050565b634e487b7160e01b600052601260045260246000fd5b600082610a7057610a70610a4b565b500490565b600082610a8457610a84610a4b565b500690565b634e487b7160e01b600052603260045260246000fd5b6000600019821415610ac157634e487b7160e01b600052601160045260246000fd5b506001019056fea264697066735822122075d68ce29fcb3ffefd19dbbc3e02aea3efa590eea023702dc56259a95896dd3a64736f6c63430008080033321aa79c920646eff61b26444df328c88e8a87a722b0a51865510a07ffa63b3d

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061009e5760003560e01c80638da5cb5b116100665780638da5cb5b14610129578063942172571461014e5780639e34070f14610161578063c4d66de814610184578063f2fde38b1461019757600080fd5b80632e7ba6ef146100a35780632eb4a7ab146100b85780634a34d9a3146100f2578063715018a6146101195780637791dc6b14610121575b600080fd5b6100b66100b1366004610909565b6101aa565b005b6100df7f321aa79c920646eff61b26444df328c88e8a87a722b0a51865510a07ffa63b3d81565b6040519081526020015b60405180910390f35b6100df7f00000000000000000000000000000000000000000000000000000000639478a181565b6100b6610464565b6100b661049a565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016100e9565b600154610136906001600160a01b031681565b61017461016f3660046109a0565b61064c565b60405190151581526020016100e9565b6100b66101923660046109b9565b61068d565b6100b66101a53660046109b9565b61073a565b60018054600160a01b900460ff161515146101c457600080fd5b6101cd8561064c565b156102305760405162461bcd60e51b815260206004820152602860248201527f4d65726b6c654469737472696275746f723a2044726f7020616c72656164792060448201526731b630b4b6b2b21760c11b60648201526084015b60405180910390fd5b60408051602081018790526bffffffffffffffffffffffff19606087901b1691810191909152605481018490526000906074016040516020818303038152906040528051906020012090506102db8383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152507f321aa79c920646eff61b26444df328c88e8a87a722b0a51865510a07ffa63b3d92508591506107d59050565b6103315760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b6064820152608401610227565b61033a866107eb565b60015460405163a9059cbb60e01b81526001600160a01b038781166004830152602482018790529091169063a9059cbb90604401602060405180830381600087803b15801561038857600080fd5b505af115801561039c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c091906109db565b6104185760405162461bcd60e51b815260206004820152602360248201527f4d65726b6c654469737472696275746f723a205472616e73666572206661696c60448201526232b21760e91b6064820152608401610227565b60408051878152602081018690526001600160a01b038716917f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed026910160405180910390a2505050505050565b6000546001600160a01b0316331461048e5760405162461bcd60e51b8152600401610227906109fd565b6104986000610829565b565b6000546001600160a01b031633146104c45760405162461bcd60e51b8152600401610227906109fd565b7f00000000000000000000000000000000000000000000000000000000639478a142116105295760405162461bcd60e51b8152602060048201526013602482015272151bdbc81cdbdbdb881d1bc8191bc81d1a185d606a1b6044820152606401610227565b600080546001600160a01b03166001546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b15801561057f57600080fd5b505afa158015610593573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105b79190610a32565b60015460405163a9059cbb60e01b81526001600160a01b0385811660048301526024820184905292935091169063a9059cbb90604401602060405180830381600087803b15801561060757600080fd5b505af115801561061b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061063f91906109db565b50816001600160a01b0316ff5b60008061065b61010084610a61565b9050600061066b61010085610a75565b60009283526002602052604090922054600190921b9182169091149392505050565b6000546001600160a01b031633146106b75760405162461bcd60e51b8152600401610227906109fd565b600154600160a01b900460ff16156107115760405162461bcd60e51b815260206004820152601b60248201527f436f6e747261637420616c726561647920696e697469616c697a6500000000006044820152606401610227565b600180546001600160a01b039092166001600160a81b031990921691909117600160a01b179055565b6000546001600160a01b031633146107645760405162461bcd60e51b8152600401610227906109fd565b6001600160a01b0381166107c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610227565b6107d281610829565b50565b6000826107e28584610879565b14949350505050565b60006107f961010083610a61565b9050600061080961010084610a75565b6000928352600260205260409092208054600190931b9092179091555050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081815b84518110156108e557600085828151811061089b5761089b610a89565b602002602001015190508083116108c157600083815260208290526040902092506108d2565b600081815260208490526040902092505b50806108dd81610a9f565b91505061087e565b509392505050565b80356001600160a01b038116811461090457600080fd5b919050565b60008060008060006080868803121561092157600080fd5b85359450610931602087016108ed565b935060408601359250606086013567ffffffffffffffff8082111561095557600080fd5b818801915088601f83011261096957600080fd5b81358181111561097857600080fd5b8960208260051b850101111561098d57600080fd5b9699959850939650602001949392505050565b6000602082840312156109b257600080fd5b5035919050565b6000602082840312156109cb57600080fd5b6109d4826108ed565b9392505050565b6000602082840312156109ed57600080fd5b815180151581146109d457600080fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610a4457600080fd5b5051919050565b634e487b7160e01b600052601260045260246000fd5b600082610a7057610a70610a4b565b500490565b600082610a8457610a84610a4b565b500690565b634e487b7160e01b600052603260045260246000fd5b6000600019821415610ac157634e487b7160e01b600052601160045260246000fd5b506001019056fea264697066735822122075d68ce29fcb3ffefd19dbbc3e02aea3efa590eea023702dc56259a95896dd3a64736f6c63430008080033

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

321aa79c920646eff61b26444df328c88e8a87a722b0a51865510a07ffa63b3d

-----Decoded View---------------
Arg [0] : merkleRoot_ (bytes32): 0x321aa79c920646eff61b26444df328c88e8a87a722b0a51865510a07ffa63b3d

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 321aa79c920646eff61b26444df328c88e8a87a722b0a51865510a07ffa63b3d


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  ]
[ 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.