ETH Price: $2,436.83 (-2.08%)
Gas: 8.12 Gwei

Contract

0x766e51580b29f5eAE64bCDb0A9a522ff44421B29
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim199517732024-05-26 4:50:11134 days ago1716699011IN
0x766e5158...f44421B29
0 ETH0.001735193
Claim198480062024-05-11 16:33:23149 days ago1715445203IN
0x766e5158...f44421B29
0 ETH0.003068935.3312397
Claim190736812024-01-24 3:00:11257 days ago1706065211IN
0x766e5158...f44421B29
0 ETH0.0059956610.36579038
Claim190601992024-01-22 5:27:59259 days ago1705901279IN
0x766e5158...f44421B29
0 ETH0.0061330210.6345665
Claim189601242024-01-08 5:06:59273 days ago1704690419IN
0x766e5158...f44421B29
0 ETH0.015830527.3669608
Claim189033842023-12-31 5:28:47281 days ago1704000527IN
0x766e5158...f44421B29
0 ETH0.0062210610.807871
Claim188700202023-12-26 12:58:23286 days ago1703595503IN
0x766e5158...f44421B29
0 ETH0.0100795917.51119184
Claim188590712023-12-25 0:04:23288 days ago1703462663IN
0x766e5158...f44421B29
0 ETH0.009440216.32132575
Claim188434992023-12-22 19:35:23290 days ago1703273723IN
0x766e5158...f44421B29
0 ETH0.0179820431.08956383
Claim188409422023-12-22 10:59:23290 days ago1703242763IN
0x766e5158...f44421B29
0 ETH0.0161404828.04032046
Claim188382162023-12-22 1:48:23290 days ago1703209703IN
0x766e5158...f44421B29
0 ETH0.015650127.13456042
Claim187557592023-12-10 12:18:11302 days ago1702210691IN
0x766e5158...f44421B29
0 ETH0.0130853622.62303296
Claim184556792023-10-29 11:55:47344 days ago1698580547IN
0x766e5158...f44421B29
0 ETH0.0075194213
Claim184455302023-10-28 1:49:59345 days ago1698457799IN
0x766e5158...f44421B29
0 ETH0.0061077810.56002543
Claim183317882023-10-12 3:55:47361 days ago1697082947IN
0x766e5158...f44421B29
0 ETH0.003208815.54798
Claim181334432023-09-14 8:51:23389 days ago1694681483IN
0x766e5158...f44421B29
0 ETH0.0069408812
Claim181333972023-09-14 8:42:11389 days ago1694680931IN
0x766e5158...f44421B29
0 ETH0.0069738612
Claim180445432023-09-01 22:01:11402 days ago1693605671IN
0x766e5158...f44421B29
0 ETH0.007944913.66990867
Claim178166122023-08-01 0:35:59434 days ago1690850159IN
0x766e5158...f44421B29
0 ETH0.0126073321.175169
Claim175549842023-06-25 7:23:11470 days ago1687677791IN
0x766e5158...f44421B29
0 ETH0.0072288312.5
Claim174848962023-06-15 11:09:35480 days ago1686827375IN
0x766e5158...f44421B29
0 ETH0.0102820917.779581
Claim174140962023-06-05 11:42:47490 days ago1685965367IN
0x766e5158...f44421B29
0 ETH0.0112158719.392858
Claim172559822023-05-14 5:13:23512 days ago1684041203IN
0x766e5158...f44421B29
0 ETH0.0241726342
Claim172558112023-05-14 4:38:23512 days ago1684039103IN
0x766e5158...f44421B29
0 ETH0.0222764838.521632
Claim171301322023-04-26 11:34:23530 days ago1682508863IN
0x766e5158...f44421B29
0 ETH0.0198961733.57217165
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x55ce89Ff...cF7242801
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
MerkleDistributorVeSolid

Compiler Version
v0.6.11+commit.5ef660b1

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-04-22
*/

/**
 *Submitted for verification at Etherscan.io on 2022-12-31
*/

/**
 *Submitted for verification at Arbiscan on 2022-11-29
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.1.0/contracts/cryptography/MerkleProof.sol



pragma solidity ^0.6.0;

/**
 * @dev These functions deal with verification of Merkle trees (hash trees),
 */
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) {
        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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.1.0/contracts/token/ERC20/IERC20.sol



pragma solidity ^0.6.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: contracts/MerkleVeSolid.sol


pragma solidity =0.6.11;



// Allows anyone to claim a token if they exist in a merkle root.
interface IMerkleDistributor {
    // Returns the address of the token distributed by this contract.
    function token() external view returns (address);

    // Returns the merkle root of the merkle tree containing account balances available to claim.
    function merkleRoot() external view returns (bytes32);

    // Returns true if the index has been marked claimed.
    function isClaimed(uint256 index) external view returns (bool);

    // Claim the given amount of the token to the given address. Reverts if the inputs are invalid.
    function claim(
        uint256 index,
        address account,
        uint256 amount,
        bytes32[] calldata merkleProof
    ) external;

    // Claim the given amount of the token to the given address. Reverts if the inputs are invalid.
    function claimFor(
        uint256 index,
        address account,
        uint256 amount,
        bytes32[] calldata merkleProof,
        address recipient
    ) external;

    // This event is triggered whenever a call to #claim succeeds.
    event Claimed(uint256 index, address account, uint256 tokenId, uint256 amount);
}


interface IVe {
    function split(uint256 tokenId, uint256 sendAmount)
        external
        returns (uint256);

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    function increase_unlock_time(
        uint256 tokenId,
        uint256 lockDuration
    ) external;
}

contract MerkleDistributorVeSolid is IMerkleDistributor {
    address public immutable override token;
    bytes32 public immutable override merkleRoot;
    uint256 public immutable rootTokenId;
    uint256 private constant MAX_LOCK = 4 * 52 * 1 weeks;

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

    constructor(
        address token_,
        bytes32 merkleRoot_,
        uint256 rootTokenId_
    ) public {
        token = token_;
        merkleRoot = merkleRoot_;
        governance = msg.sender;
        rootTokenId = rootTokenId_;
    }

    function isClaimed(uint256 index) public view override 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 override {
        require(!isClaimed(index), "MerkleDistributor: Drop already claimed.");
        require(msg.sender == account, "!account");
        
        // 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);

        // Split NFT
        uint256 tokenId = IVe(token).split(rootTokenId, amount);

        // Transfer NFT (intentionally use transferFrom instead of safeTransferFrom)
        IVe(token).transferFrom(address(this), account, tokenId);

        emit Claimed(index, account, tokenId, amount);
    }

    function claimFor(
        uint256 index,
        address account,
        uint256 amount,
        bytes32[] calldata merkleProof,
        address recipient
    ) external override {
        require(msg.sender == governance, "!governance");
        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);

        // Split NFT
        uint256 tokenId = IVe(token).split(rootTokenId, amount);

        // Transfer NFT (intentionally use transferFrom instead of safeTransferFrom)
        IVe(token).transferFrom(address(this), recipient, tokenId);

        emit Claimed(index, account, tokenId, amount);
    }

    function transferGovernance(address governance_) external {
        require(msg.sender == governance, "!governance");
        governance = governance_;
    }

    function collectDust(address _token, uint256 _amount) external {
        require(msg.sender == governance, "!governance");
        require(_token != token, "!token");
        if (_token == address(0)) {
            // token address(0) = ETH
            payable(governance).transfer(_amount);
        } else {
            IERC20(_token).transfer(governance, _amount);
        }
    }

    function recoverNft() external {
        require(msg.sender == governance, "!governance");
        IVe(token).transferFrom(address(this), governance, rootTokenId);
    }

    function maxLockNft() public {
        require(msg.sender == governance, "!governance");
        IVe(token).increase_unlock_time(rootTokenId, MAX_LOCK);
    }

    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4) {
        return this.onERC721Received.selector;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"},{"internalType":"uint256","name":"rootTokenId_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"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":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"address","name":"recipient","type":"address"}],"name":"claimFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"collectDust","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLockNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"recoverNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rootTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"governance_","type":"address"}],"name":"transferGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806388f13dde1161007157806388f13dde146103ba5780639e34070f146103d8578063b14b990f1461041e578063b45f900d1461046c578063d38bfff414610476578063fc0c546a146104ba576100b4565b8063150b7a02146100b95780632e7ba6ef146101ce5780632eb4a7ab1461027b57806350ba3bc8146102995780635aa6e675146102a35780635b43aca3146102ed575b600080fd5b61017a600480360360808110156100cf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561013657600080fd5b82018360208201111561014857600080fd5b8035906020019184600183028401116401000000008311171561016a57600080fd5b9091929391929390505050610504565b60405180827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200191505060405180910390f35b610279600480360360808110156101e457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561023557600080fd5b82018360208201111561024757600080fd5b8035906020019184602083028401116401000000008311171561026957600080fd5b9091929391929390505050610519565b005b61028361099e565b6040518082815260200191505060405180910390f35b6102a16109c2565b005b6102ab610b3e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103b8600480360360a081101561030357600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561035457600080fd5b82018360208201111561036657600080fd5b8035906020019184602083028401116401000000008311171561038857600080fd5b9091929391929390803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b64565b005b6103c261100c565b6040518082815260200191505060405180910390f35b610404600480360360208110156103ee57600080fd5b8101908080359060200190929190505050611030565b604051808215151515815260200191505060405180910390f35b61046a6004803603604081101561043457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611081565b005b610474611393565b005b6104b86004803603602081101561048c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061158d565b005b6104c2611694565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600063150b7a0260e01b905095945050505050565b61052285611030565b15610578576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806117c56028913960400191505060405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610619576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260088152602001807f216163636f756e7400000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000858585604051602001808481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b815260140182815260200193505050506040516020818303038152906040528051906020012090506106ef838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050507f93bfb9cd3f43b900b7db90c5b930035c50e4ab4395fea7c665933ad3f89aade7836116b8565b610744576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806117ed6021913960400191505060405180910390fd5b61074d86611770565b60007f00000000000000000000000077730ed992d286c53f3a0838232c3957daeaaf7373ffffffffffffffffffffffffffffffffffffffff16634b19becc7f0000000000000000000000000000000000000000000000000000000000000409876040518363ffffffff1660e01b81526004018083815260200182815260200192505050602060405180830381600087803b1580156107ea57600080fd5b505af11580156107fe573d6000803e3d6000fd5b505050506040513d602081101561081457600080fd5b810190808051906020019092919050505090507f00000000000000000000000077730ed992d286c53f3a0838232c3957daeaaf7373ffffffffffffffffffffffffffffffffffffffff166323b872dd3088846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561090257600080fd5b505af1158015610916573d6000803e3d6000fd5b505050507fd9cb1e2714d65a111c0f20f060176ad657496bd47a3de04ec7c3d4ca232112ac87878388604051808581526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182815260200194505050505060405180910390a150505050505050565b7f93bfb9cd3f43b900b7db90c5b930035c50e4ab4395fea7c665933ad3f89aade781565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21676f7665726e616e636500000000000000000000000000000000000000000081525060200191505060405180910390fd5b7f00000000000000000000000077730ed992d286c53f3a0838232c3957daeaaf7373ffffffffffffffffffffffffffffffffffffffff1663a4d855df7f000000000000000000000000000000000000000000000000000000000000040963077f88006040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b158015610b2457600080fd5b505af1158015610b38573d6000803e3d6000fd5b50505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21676f7665726e616e636500000000000000000000000000000000000000000081525060200191505060405180910390fd5b610c3086611030565b15610c86576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806117c56028913960400191505060405180910390fd5b6000868686604051602001808481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b81526014018281526020019350505050604051602081830303815290604052805190602001209050610d5c848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050507f93bfb9cd3f43b900b7db90c5b930035c50e4ab4395fea7c665933ad3f89aade7836116b8565b610db1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806117ed6021913960400191505060405180910390fd5b610dba87611770565b60007f00000000000000000000000077730ed992d286c53f3a0838232c3957daeaaf7373ffffffffffffffffffffffffffffffffffffffff16634b19becc7f0000000000000000000000000000000000000000000000000000000000000409886040518363ffffffff1660e01b81526004018083815260200182815260200192505050602060405180830381600087803b158015610e5757600080fd5b505af1158015610e6b573d6000803e3d6000fd5b505050506040513d6020811015610e8157600080fd5b810190808051906020019092919050505090507f00000000000000000000000077730ed992d286c53f3a0838232c3957daeaaf7373ffffffffffffffffffffffffffffffffffffffff166323b872dd3085846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b158015610f6f57600080fd5b505af1158015610f83573d6000803e3d6000fd5b505050507fd9cb1e2714d65a111c0f20f060176ad657496bd47a3de04ec7c3d4ca232112ac88888389604051808581526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182815260200194505050505060405180910390a15050505050505050565b7f000000000000000000000000000000000000000000000000000000000000040981565b600080610100838161103e57fe5b0490506000610100848161104e57fe5b06905060008060008481526020019081526020016000205490506000826001901b90508081831614945050505050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21676f7665726e616e636500000000000000000000000000000000000000000081525060200191505060405180910390fd5b7f00000000000000000000000077730ed992d286c53f3a0838232c3957daeaaf7373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260068152602001807f21746f6b656e000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112a957600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112a3573d6000803e3d6000fd5b5061138f565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561135257600080fd5b505af1158015611366573d6000803e3d6000fd5b505050506040513d602081101561137c57600080fd5b8101908080519060200190929190505050505b5050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21676f7665726e616e636500000000000000000000000000000000000000000081525060200191505060405180910390fd5b7f00000000000000000000000077730ed992d286c53f3a0838232c3957daeaaf7373ffffffffffffffffffffffffffffffffffffffff166323b872dd30600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167f00000000000000000000000000000000000000000000000000000000000004096040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561157357600080fd5b505af1158015611587573d6000803e3d6000fd5b50505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f21676f7665726e616e636500000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f00000000000000000000000077730ed992d286c53f3a0838232c3957daeaaf7381565b60008082905060008090505b85518110156117625760008682815181106116db57fe5b602002602001015190508083116117225782816040516020018083815260200182815260200192505050604051602081830303815290604052805190602001209250611754565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b5080806001019150506116c4565b508381149150509392505050565b6000610100828161177d57fe5b0490506000610100838161178d57fe5b069050806001901b60008084815260200190815260200160002054176000808481526020019081526020016000208190555050505056fe4d65726b6c654469737472696275746f723a2044726f7020616c726561647920636c61696d65642e4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f662ea2646970667358221220869e6a3916b19f6dc84666ff1233ff16ba844ab6efc9499dd119d13f92060b5c64736f6c634300060b0033

Deployed Bytecode Sourcemap

6042:4361:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10179:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;7322:947;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6151:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10010:161;;;:::i;:::-;;6406:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8277:978;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6202:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6699:331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;9431:391;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;9830:172;;;:::i;:::-;;9263:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6105:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10179:221;10336:6;10362:30;;;10355:37;;10179:221;;;;;;;:::o;7322:947::-;7498:16;7508:5;7498:9;:16::i;:::-;7497:17;7489:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7592:7;7578:21;;:10;:21;;;7570:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7670:12;7712:5;7719:7;7728:6;7695:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7685:51;;;;;;7670:66;;7769:49;7788:11;;7769:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7801:10;7813:4;7769:18;:49::i;:::-;7747:132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7940:18;7952:5;7940:11;:18::i;:::-;7993:15;8015:5;8011:16;;;8028:11;8041:6;8011:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7993:55;;8151:5;8147:23;;;8179:4;8186:7;8195;8147:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8221:40;8229:5;8236:7;8245;8254:6;8221:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7322:947;;;;;;;:::o;6151:44::-;;;:::o;10010:161::-;10072:10;;;;;;;;;;;10058:24;;:10;:24;;;10050:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10113:5;10109:31;;;10141:11;6281:16;10109:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10010:161::o;6406:25::-;;;;;;;;;;;;;:::o;8277:978::-;8497:10;;;;;;;;;;;8483:24;;:10;:24;;;8475:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8543:16;8553:5;8543:9;:16::i;:::-;8542:17;8534:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8654:12;8696:5;8703:7;8712:6;8679:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8669:51;;;;;;8654:66;;8753:49;8772:11;;8753:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8785:10;8797:4;8753:18;:49::i;:::-;8731:132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8924:18;8936:5;8924:11;:18::i;:::-;8977:15;8999:5;8995:16;;;9012:11;9025:6;8995:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8977:55;;9135:5;9131:23;;;9163:4;9170:9;9181:7;9131:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9207:40;9215:5;9222:7;9231;9240:6;9207:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8277:978;;;;;;;;:::o;6202:36::-;;;:::o;6699:331::-;6763:4;6780:24;6815:3;6807:5;:11;;;;;;6780:38;;6829:23;6863:3;6855:5;:11;;;;;;6829:37;;6877:19;6899:13;:31;6913:16;6899:31;;;;;;;;;;;;6877:53;;6941:12;6962:15;6957:1;:20;;6941:37;;7018:4;7010;6996:11;:18;:26;6989:33;;;;;;6699:331;;;:::o;9431:391::-;9527:10;;;;;;;;;;;9513:24;;:10;:24;;;9505:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9582:5;9572:15;;:6;:15;;;;9564:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9631:1;9613:20;;:6;:20;;;9609:206;;;9697:10;;;;;;;;;;;9689:28;;:37;9718:7;9689:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9609:206;;;9766:6;9759:23;;;9783:10;;;;;;;;;;;9795:7;9759:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9609:206;9431:391;;:::o;9830:172::-;9894:10;;;;;;;;;;;9880:24;;:10;:24;;;9872:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9935:5;9931:23;;;9963:4;9970:10;;;;;;;;;;;9982:11;9931:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9830:172::o;9263:160::-;9354:10;;;;;;;;;;;9340:24;;:10;:24;;;9332:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9404:11;9391:10;;:24;;;;;;;;;;;;;;;;;;9263:160;:::o;6105:39::-;;;:::o;736:796::-;827:4;844:20;867:4;844:27;;889:9;901:1;889:13;;884:525;908:5;:12;904:1;:16;884:525;;;942:20;965:5;971:1;965:8;;;;;;;;;;;;;;942:31;;1010:12;994;:28;990:408;;1164:12;1178;1147:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1137:55;;;;;;1122:70;;990:408;;;1354:12;1368;1337:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1327:55;;;;;;1312:70;;990:408;884:525;922:3;;;;;;;884:525;;;;1520:4;1504:12;:20;1497:27;;;736:796;;;;;:::o;7038:276::-;7093:24;7128:3;7120:5;:11;;;;;;7093:38;;7142:23;7176:3;7168:5;:11;;;;;;7142:37;;7290:15;7285:1;:20;;7237:13;:31;7251:16;7237:31;;;;;;;;;;;;:69;7190:13;:31;7204:16;7190:31;;;;;;;;;;;:116;;;;7038:276;;;:::o

Swarm Source

ipfs://869e6a3916b19f6dc84666ff1233ff16ba844ab6efc9499dd119d13f92060b5c

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.