ETH Price: $2,570.19 (+1.06%)

Contract

0x52E15B7EcA8d7C104587c0d76dc8C4AEFCA6E0A1
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim155593062022-09-18 8:40:59734 days ago1663490459IN
0x52E15B7E...EFCA6E0A1
0 ETH0.000158732
Claim152624732022-08-02 10:12:25781 days ago1659435145IN
0x52E15B7E...EFCA6E0A1
0 ETH0.0003716412.31064287
Claim140661542022-01-24 4:26:39971 days ago1642998399IN
0x52E15B7E...EFCA6E0A1
0 ETH0.006350880
Claim137422972021-12-04 22:08:441021 days ago1638655724IN
0x52E15B7E...EFCA6E0A1
0 ETH0.0063505379.16985788
Claim135381412021-11-02 14:46:181054 days ago1635864378IN
0x52E15B7E...EFCA6E0A1
0 ETH0.01394981174.00730485
Claim135351262021-11-02 3:05:071054 days ago1635822307IN
0x52E15B7E...EFCA6E0A1
0 ETH0.01202412149.90058142
Claim135107142021-10-29 7:08:581058 days ago1635491338IN
0x52E15B7E...EFCA6E0A1
0 ETH0.01231858153.72096137
Claim134914292021-10-26 6:40:421061 days ago1635230442IN
0x52E15B7E...EFCA6E0A1
0 ETH0.0054725568.22951855
Claim134796692021-10-24 10:36:051063 days ago1635071765IN
0x52E15B7E...EFCA6E0A1
0 ETH0.0043638854.40713426
Claim134592572021-10-21 5:51:411066 days ago1634795501IN
0x52E15B7E...EFCA6E0A1
0 ETH0.004848661.08481238
Claim134555162021-10-20 15:53:311067 days ago1634745211IN
0x52E15B7E...EFCA6E0A1
0 ETH0.01314821164.01235472
Claim134542112021-10-20 10:57:311067 days ago1634727451IN
0x52E15B7E...EFCA6E0A1
0 ETH0.0031339939.09283916
Claim134521672021-10-20 3:17:301067 days ago1634699850IN
0x52E15B7E...EFCA6E0A1
0 ETH0.0058200772.56043201
Claim134488142021-10-19 14:42:291068 days ago1634654549IN
0x52E15B7E...EFCA6E0A1
0 ETH0.006447681.24393758
Claim134462292021-10-19 5:03:221068 days ago1634619802IN
0x52E15B7E...EFCA6E0A1
0 ETH0.003709746.74347032
Claim134441292021-10-18 21:10:211068 days ago1634591421IN
0x52E15B7E...EFCA6E0A1
0 ETH0.00884842110.34328704
Claim134364562021-10-17 16:21:121070 days ago1634487672IN
0x52E15B7E...EFCA6E0A1
0 ETH0.0053115466.23040543
Claim134328502021-10-17 2:43:011070 days ago1634438581IN
0x52E15B7E...EFCA6E0A1
0 ETH0.0036318545.29181302
Claim134245472021-10-15 19:41:081071 days ago1634326868IN
0x52E15B7E...EFCA6E0A1
0 ETH0.01007567125.60986869
Claim134216662021-10-15 8:47:291072 days ago1634287649IN
0x52E15B7E...EFCA6E0A1
0 ETH0.00998606124.48656987
Claim134203712021-10-15 3:50:501072 days ago1634269850IN
0x52E15B7E...EFCA6E0A1
0 ETH0.0064593280.57440699
Claim134181322021-10-14 19:18:111072 days ago1634239091IN
0x52E15B7E...EFCA6E0A1
0 ETH0.01118039139.3994831
Claim134157702021-10-14 10:24:271073 days ago1634207067IN
0x52E15B7E...EFCA6E0A1
0 ETH0.0063356479
Claim134150212021-10-14 7:30:401073 days ago1634196640IN
0x52E15B7E...EFCA6E0A1
0 ETH0.0050129862.51693894
Claim134098452021-10-13 11:52:131074 days ago1634125933IN
0x52E15B7E...EFCA6E0A1
0 ETH0.0057846672.14780785
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:
MerkleDistributor

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-11-03
*/

// File: @openzeppelin/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: @openzeppelin/contracts/GSN/Context.sol

pragma solidity ^0.6.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 GSN 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 virtual view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal virtual view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.6.0;

/**
 * @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.
 */
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() internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/MerkleDistributor.sol

pragma solidity >=0.6.11;

interface IRMU {
    function mint(
        address _to,
        uint256 _id,
        uint256 _quantity,
        bytes memory _data
    ) external;
}

interface IMerkleDistributor {
    // Returns the address of the RMU used by this contract.
    function RMU() external view returns (IRMU);

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

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

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

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

contract MerkleDistributor is IMerkleDistributor, Ownable {
    IRMU public immutable override RMU;

    // Mapping of cardIds to merkle roots
    mapping(uint256 => bytes32) public override merkleRoots;

    // Mapping of cardIds to packed array of booleans
    mapping(uint256 => mapping(uint256 => uint256)) private claimedBitMaps;

    constructor(IRMU _RMU) public {
        RMU = _RMU;
    }

    function addMerkleRoot(uint256 cardId, bytes32 merkleRoot)
        public
        onlyOwner
    {
        merkleRoots[cardId] = merkleRoot;
    }

    function isClaimed(uint256 cardId, uint256 index)
        public
        override
        view
        returns (bool)
    {
        mapping(uint256 => uint256) storage claimed = claimedBitMaps[cardId];

        uint256 claimedWordIndex = index / 256;
        uint256 claimedBitIndex = index % 256;
        uint256 claimedWord = claimed[claimedWordIndex];
        uint256 mask = (1 << claimedBitIndex);

        return claimedWord & mask == mask;
    }

    function _setClaimed(uint256 cardId, uint256 index) private {
        mapping(uint256 => uint256) storage claimed = claimedBitMaps[cardId];

        uint256 claimedWordIndex = index / 256;
        uint256 claimedBitIndex = index % 256;

        claimed[claimedWordIndex] =
            claimed[claimedWordIndex] |
            (1 << claimedBitIndex);
    }

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

        // Verify the merkle proof.
        bytes32 node = keccak256(abi.encodePacked(index, account, amount));

        require(
            MerkleProof.verify(merkleProof, merkleRoots[cardId], node),
            "MerkleDistributor: Invalid proof."
        );

        // Mark it claimed and send the NFT.
        _setClaimed(cardId, index);

        RMU.mint(account, cardId, amount, "");

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IRMU","name":"_RMU","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cardId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"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":"RMU","outputs":[{"internalType":"contract IRMU","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"cardId","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"addMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cardId","type":"uint256"},{"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":"cardId","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"merkleRoots","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405234801561001057600080fd5b5060405161090e38038061090e8339818101604052602081101561003357600080fd5b5051600061003f61009e565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060601b6001600160601b0319166080526100a2565b3390565b60805160601c61084a6100c4600039806103dc528061055a525061084a6000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c80638a2661ad1161005b5780638a2661ad1461017a5780638da5cb5b1461019e578063f2fde38b146101a6578063f364c90c146101cc57610088565b806309e772691461008d5780635d4df3bf146100b2578063715018a61461014357806371c5ecb11461014b575b600080fd5b6100b0600480360360408110156100a357600080fd5b5080359060200135610203565b005b6100b0600480360360a08110156100c857600080fd5b8135916020810135916001600160a01b036040830135169160608101359181019060a08101608082013564010000000081111561010457600080fd5b82018360208201111561011657600080fd5b8035906020019184602083028401116401000000008311171561013857600080fd5b50909250905061027f565b6100b0610492565b6101686004803603602081101561016157600080fd5b5035610546565b60408051918252519081900360200190f35b610182610558565b604080516001600160a01b039092168252519081900360200190f35b61018261057c565b6100b0600480360360208110156101bc57600080fd5b50356001600160a01b031661058b565b6101ef600480360360408110156101e257600080fd5b5080359060200135610695565b604080519115158252519081900360200190f35b61020b6106c6565b6000546001600160a01b0390811691161461026d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60009182526001602052604090912055565b6102898686610695565b156102c55760405162461bcd60e51b81526004018080602001828103825260288152602001806107cc6028913960400191505060405180910390fd5b600085858560405160200180848152602001836001600160a01b031660601b8152601401828152602001935050505060405160208183030381529060405280519060200120905061035783838080602002602001604051908101604052809392919081815260200183836020028082843760009201829052508c81526001602052604090205492508591506106ca9050565b6103925760405162461bcd60e51b81526004018080602001828103825260218152602001806107f46021913960400191505060405180910390fd5b61039c8787610773565b6040805163731133e960e01b81526001600160a01b038781166004830152602482018a9052604482018790526080606483015260006084830181905292517f00000000000000000000000000000000000000000000000000000000000000009091169263731133e99260c4808201939182900301818387803b15801561042157600080fd5b505af1158015610435573d6000803e3d6000fd5b5050604080518a8152602081018a90526001600160a01b038916818301526060810188905290517fb94bf7f9302edf52a596286915a69b4b0685574cffdedd0712e3c62f2550f0ba9350908190036080019150a150505050505050565b61049a6106c6565b6000546001600160a01b039081169116146104fc576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60016020526000908152604090205481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b031690565b6105936106c6565b6000546001600160a01b039081169116146105f5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661063a5760405162461bcd60e51b81526004018080602001828103825260268152602001806107a66026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60009182526002602090815260408084206101008404855290915290912054600160ff9092169190911b9081161490565b3390565b600081815b85518110156107685760008682815181106106e657fe5b6020026020010151905080831161072d578281604051602001808381526020018281526020019250505060405160208183030381529060405280519060200120925061075f565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b506001016106cf565b509092149392505050565b6000918252600260209081526040808420610100840485529091529091208054600160ff9093169290921b909117905556fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734d65726b6c654469737472696275746f723a2044726f7020616c726561647920636c61696d65642e4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f662ea26469706673582212207a177ccab901059064ff77bd78048bb3d7679f9c11a59376410faad4f04c397864736f6c634300060c0033000000000000000000000000db68df0e86bc7c6176e6a2255a5365f51113bce8

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100885760003560e01c80638a2661ad1161005b5780638a2661ad1461017a5780638da5cb5b1461019e578063f2fde38b146101a6578063f364c90c146101cc57610088565b806309e772691461008d5780635d4df3bf146100b2578063715018a61461014357806371c5ecb11461014b575b600080fd5b6100b0600480360360408110156100a357600080fd5b5080359060200135610203565b005b6100b0600480360360a08110156100c857600080fd5b8135916020810135916001600160a01b036040830135169160608101359181019060a08101608082013564010000000081111561010457600080fd5b82018360208201111561011657600080fd5b8035906020019184602083028401116401000000008311171561013857600080fd5b50909250905061027f565b6100b0610492565b6101686004803603602081101561016157600080fd5b5035610546565b60408051918252519081900360200190f35b610182610558565b604080516001600160a01b039092168252519081900360200190f35b61018261057c565b6100b0600480360360208110156101bc57600080fd5b50356001600160a01b031661058b565b6101ef600480360360408110156101e257600080fd5b5080359060200135610695565b604080519115158252519081900360200190f35b61020b6106c6565b6000546001600160a01b0390811691161461026d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60009182526001602052604090912055565b6102898686610695565b156102c55760405162461bcd60e51b81526004018080602001828103825260288152602001806107cc6028913960400191505060405180910390fd5b600085858560405160200180848152602001836001600160a01b031660601b8152601401828152602001935050505060405160208183030381529060405280519060200120905061035783838080602002602001604051908101604052809392919081815260200183836020028082843760009201829052508c81526001602052604090205492508591506106ca9050565b6103925760405162461bcd60e51b81526004018080602001828103825260218152602001806107f46021913960400191505060405180910390fd5b61039c8787610773565b6040805163731133e960e01b81526001600160a01b038781166004830152602482018a9052604482018790526080606483015260006084830181905292517f000000000000000000000000db68df0e86bc7c6176e6a2255a5365f51113bce89091169263731133e99260c4808201939182900301818387803b15801561042157600080fd5b505af1158015610435573d6000803e3d6000fd5b5050604080518a8152602081018a90526001600160a01b038916818301526060810188905290517fb94bf7f9302edf52a596286915a69b4b0685574cffdedd0712e3c62f2550f0ba9350908190036080019150a150505050505050565b61049a6106c6565b6000546001600160a01b039081169116146104fc576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60016020526000908152604090205481565b7f000000000000000000000000db68df0e86bc7c6176e6a2255a5365f51113bce881565b6000546001600160a01b031690565b6105936106c6565b6000546001600160a01b039081169116146105f5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661063a5760405162461bcd60e51b81526004018080602001828103825260268152602001806107a66026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60009182526002602090815260408084206101008404855290915290912054600160ff9092169190911b9081161490565b3390565b600081815b85518110156107685760008682815181106106e657fe5b6020026020010151905080831161072d578281604051602001808381526020018281526020019250505060405160208183030381529060405280519060200120925061075f565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b506001016106cf565b509092149392505050565b6000918252600260209081526040808420610100840485529091529091208054600160ff9093169290921b909117905556fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734d65726b6c654469737472696275746f723a2044726f7020616c726561647920636c61696d65642e4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f662ea26469706673582212207a177ccab901059064ff77bd78048bb3d7679f9c11a59376410faad4f04c397864736f6c634300060c0033

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

000000000000000000000000db68df0e86bc7c6176e6a2255a5365f51113bce8

-----Decoded View---------------
Arg [0] : _RMU (address): 0xDb68Df0e86Bc7C6176E6a2255a5365f51113BCe8

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


Deployed Bytecode Sourcemap

5988:2198:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6404:150;;;;;;;;;;;;;;;;-1:-1:-1;6404:150:0;;;;;;;:::i;:::-;;7406:777;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7406:777:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7406:777:0;;-1:-1:-1;7406:777:0;-1:-1:-1;7406:777:0;:::i;4190:148::-;;;:::i;6139:55::-;;;;;;;;;;;;;;;;-1:-1:-1;6139:55:0;;:::i;:::-;;;;;;;;;;;;;;;;6053:34;;;:::i;:::-;;;;-1:-1:-1;;;;;6053:34:0;;;;;;;;;;;;;;3548:79;;;:::i;4493:281::-;;;;;;;;;;;;;;;;-1:-1:-1;4493:281:0;-1:-1:-1;;;;;4493:281:0;;:::i;6562:465::-;;;;;;;;;;;;;;;;-1:-1:-1;6562:465:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6404:150;3770:12;:10;:12::i;:::-;3760:6;;-1:-1:-1;;;;;3760:6:0;;;:22;;;3752:67;;;;;-1:-1:-1;;;3752:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6514:19:::1;::::0;;;:11:::1;:19;::::0;;;;;:32;6404:150::o;7406:777::-;7621:24;7631:6;7639:5;7621:9;:24::i;:::-;7620:25;7598:115;;;;-1:-1:-1;;;7598:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7763:12;7805:5;7812:7;7821:6;7788:40;;;;;;;;;;;-1:-1:-1;;;;;7788:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7778:51;;;;;;7763:66;;7864:58;7883:11;;7864:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7896:19:0;;;:11;:19;;;;;;;-1:-1:-1;7917:4:0;;-1:-1:-1;7864:18:0;;-1:-1:-1;7864:58:0:i;:::-;7842:141;;;;-1:-1:-1;;;7842:141:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8042:26;8054:6;8062:5;8042:11;:26::i;:::-;8081:37;;;-1:-1:-1;;;8081:37:0;;-1:-1:-1;;;;;8081:37:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8081:37:0;;;;;;;;:3;:8;;;;;;:37;;;;;;;;;;;-1:-1:-1;8081:8:0;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8136:39:0;;;;;;;;;;;;-1:-1:-1;;;;;8136:39:0;;;;;;;;;;;;;;;;-1:-1:-1;8136:39:0;;;;;;;-1:-1:-1;8136:39:0;7406:777;;;;;;;:::o;4190:148::-;3770:12;:10;:12::i;:::-;3760:6;;-1:-1:-1;;;;;3760:6:0;;;:22;;;3752:67;;;;;-1:-1:-1;;;3752:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4297:1:::1;4281:6:::0;;4260:40:::1;::::0;-1:-1:-1;;;;;4281:6:0;;::::1;::::0;4260:40:::1;::::0;4297:1;;4260:40:::1;4328:1;4311:19:::0;;-1:-1:-1;;;;;;4311:19:0::1;::::0;;4190:148::o;6139:55::-;;;;;;;;;;;;;:::o;6053:34::-;;;:::o;3548:79::-;3586:7;3613:6;-1:-1:-1;;;;;3613:6:0;3548:79;:::o;4493:281::-;3770:12;:10;:12::i;:::-;3760:6;;-1:-1:-1;;;;;3760:6:0;;;:22;;;3752:67;;;;;-1:-1:-1;;;3752:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4596:22:0;::::1;4574:110;;;;-1:-1:-1::0;;;4574:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4721:6;::::0;;4700:38:::1;::::0;-1:-1:-1;;;;;4700:38:0;;::::1;::::0;4721:6;::::1;::::0;4700:38:::1;::::0;::::1;4749:6;:17:::0;;-1:-1:-1;;;;;;4749:17:0::1;-1:-1:-1::0;;;;;4749:17:0;;;::::1;::::0;;;::::1;::::0;;4493:281::o;6562:465::-;6678:4;6746:22;;;:14;:22;;;;;;;;6816:3;6808:11;;6900:25;;;;;;;;;6952:1;6856:11;;;;6952:20;;;;6993:18;;;:26;;6562:465::o;2080:106::-;2168:10;2080:106;:::o;541:910::-;666:4;706;666;723:605;747:5;:12;743:1;:16;723:605;;;781:20;804:5;810:1;804:8;;;;;;;;;;;;;;781:31;;849:12;833;:28;829:488;;1025:12;1039;1008:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;976:95;;;;;;961:110;;829:488;;;1255:12;1269;1238:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1206:95;;;;;;1191:110;;829:488;-1:-1:-1;761:3:0;;723:605;;;-1:-1:-1;1423:20:0;;;;541:910;-1:-1:-1;;;541:910:0:o;7035:363::-;7106:43;7152:22;;;:14;:22;;;;;;;;7222:3;7214:11;;7327:25;;;;;;;;;;7369:1;7262:11;;;;7369:20;;;;7327:63;;;7286:104;;7035:363::o

Swarm Source

ipfs://7a177ccab901059064ff77bd78048bb3d7679f9c11a59376410faad4f04c3978

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.