ETH Price: $2,461.19 (-2.51%)

Contract

0x07F90F221daB7d49eA43b836df049Af6399771CF
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

Transaction Hash
Method
Block
From
To
Claim152828352022-08-05 14:20:29760 days ago1659709229IN
0x07F90F22...6399771CF
0 ETH0.0042215339.29896972
Claim149078772022-06-05 7:41:30821 days ago1654414890IN
0x07F90F22...6399771CF
0 ETH0.0018916117.32926857
Claim148151602022-05-21 4:16:04836 days ago1653106564IN
0x07F90F22...6399771CF
0 ETH0.0015356714.07548354
Claim145760602022-04-13 8:24:00874 days ago1649838240IN
0x07F90F22...6399771CF
0 ETH0.0043013139.40411977
Claim145186912022-04-04 9:22:27883 days ago1649064147IN
0x07F90F22...6399771CF
0 ETH0.0052818648.41434691
Claim144880012022-03-30 14:11:28888 days ago1648649488IN
0x07F90F22...6399771CF
0 ETH0.0090936672.04897194
Claim144364422022-03-22 13:47:11896 days ago1647956831IN
0x07F90F22...6399771CF
0 ETH0.0042351439.11435782
Claim143830312022-03-14 6:02:54904 days ago1647237774IN
0x07F90F22...6399771CF
0 ETH0.0016892715.59842263
Claim143789712022-03-13 14:58:45905 days ago1647183525IN
0x07F90F22...6399771CF
0 ETH0.002643524.22411227
Claim143670892022-03-11 18:23:19907 days ago1647022999IN
0x07F90F22...6399771CF
0 ETH0.0032773430.02913653
Claim143017122022-03-01 14:36:52917 days ago1646145412IN
0x07F90F22...6399771CF
0 ETH0.0079489272.86105699
Claim142957202022-02-28 16:29:53918 days ago1646065793IN
0x07F90F22...6399771CF
0 ETH0.0081959351.37101997
Claim142948472022-02-28 13:13:38918 days ago1646054018IN
0x07F90F22...6399771CF
0 ETH0.0044210340.51648761
Claim141454412022-02-05 10:24:58941 days ago1644056698IN
0x07F90F22...6399771CF
0 ETH0.0011874740.16776039
Claim141385402022-02-04 8:53:59942 days ago1643964839IN
0x07F90F22...6399771CF
0 ETH0.0014037747.4840221
Claim140936312022-01-28 10:29:48949 days ago1643365788IN
0x07F90F22...6399771CF
0 ETH0.0097630990.18689932
Claim140430542022-01-20 14:44:55957 days ago1642689895IN
0x07F90F22...6399771CF
0 ETH0.0067433762.2944636
Claim139454732022-01-05 12:39:18972 days ago1641386358IN
0x07F90F22...6399771CF
0 ETH0.0098225690.01038972
Claim139379852022-01-04 8:43:04973 days ago1641285784IN
0x07F90F22...6399771CF
0 ETH0.0023721478.77989208
Claim139378432022-01-04 8:10:04973 days ago1641283804IN
0x07F90F22...6399771CF
0 ETH0.0092508884.80440912
Claim139264612022-01-02 14:14:27975 days ago1641132867IN
0x07F90F22...6399771CF
0 ETH0.0084009966.56096097
Claim139168512022-01-01 2:31:04976 days ago1641004264IN
0x07F90F22...6399771CF
0 ETH0.0085099677.98940456
Claim137963632021-12-13 10:49:21995 days ago1639392561IN
0x07F90F22...6399771CF
0 ETH0.0033933231.11
Claim137899622021-12-12 11:17:50996 days ago1639307870IN
0x07F90F22...6399771CF
0 ETH0.00338231
Claim137841482021-12-11 13:33:29997 days ago1639229609IN
0x07F90F22...6399771CF
0 ETH0.0049281345.17283326
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.11+commit.5ef660b1

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-11-10
*/

/**
 *Submitted for verification at Etherscan.io on 2021-11-10
*/

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity =0.6.11;

/**
 * @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);
}


// Dependency 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;
    }
}


// Dependency file: contracts/interfaces/IMerkleDistributor.sol
// pragma solidity >=0.5.0;

// 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;

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

// Root file: contracts/MerkleDistributor.sol

// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/cryptography/MerkleProof.sol";
// import "contracts/interfaces/IMerkleDistributor.sol";

contract MerkleDistributor is IMerkleDistributor {
    address public immutable override token;
    bytes32 public immutable override merkleRoot;

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

    constructor(address token_, bytes32 merkleRoot_) public {
        token = token_;
        merkleRoot = merkleRoot_;
    }

    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.');

        // 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(token).transfer(account, amount), 'MerkleDistributor: Transfer failed.');

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"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":"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"}],"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":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60c060405234801561001057600080fd5b506040516107f73803806107f78339818101604052604081101561003357600080fd5b8101908080519060200190929190805190602001909291905050508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508060a08181525050505060805160601c60a0516107386100bf600039806102bc52806104f3525080610341528061056852506107386000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80632e7ba6ef146100515780632eb4a7ab146100fe5780639e34070f1461011c578063fc0c546a14610162575b600080fd5b6100fc6004803603608081101561006757600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001906401000000008111156100b857600080fd5b8201836020820111156100ca57600080fd5b803590602001918460208302840111640100000000831117156100ec57600080fd5b90919293919293905050506101ac565b005b6101066104f1565b6040518082815260200191505060405180910390f35b6101486004803603602081101561013257600080fd5b8101908080359060200190929190505050610515565b604051808215151515815260200191505060405180910390f35b61016a610566565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101b585610515565b1561020b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806106976028913960400191505060405180910390fd5b6000858585604051602001808481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b815260140182815260200193505050506040516020818303038152906040528051906020012090506102e1838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050507f00000000000000000000000000000000000000000000000000000000000000008361058a565b610336576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806106bf6021913960400191505060405180910390fd5b61033f86610642565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86866040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156103e657600080fd5b505af11580156103fa573d6000803e3d6000fd5b505050506040513d602081101561041057600080fd5b8101908080519060200190929190505050610476576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806106e06023913960400191505060405180910390fd5b7f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed026868686604051808481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a1505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080610100838161052357fe5b0490506000610100848161053357fe5b06905060008060008481526020019081526020016000205490506000826001901b90508081831614945050505050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008082905060008090505b85518110156106345760008682815181106105ad57fe5b602002602001015190508083116105f45782816040516020018083815260200182815260200192505050604051602081830303815290604052805190602001209250610626565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b508080600101915050610596565b508381149150509392505050565b6000610100828161064f57fe5b0490506000610100838161065f57fe5b069050806001901b60008084815260200190815260200160002054176000808481526020019081526020016000208190555050505056fe4d65726b6c654469737472696275746f723a2044726f7020616c726561647920636c61696d65642e4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f662e4d65726b6c654469737472696275746f723a205472616e73666572206661696c65642ea2646970667358221220e7564b019c42e0f8a3ad59bdcd9329a6545eb125a90229ef06c792707021aee264736f6c634300060b0033000000000000000000000000c4436fbae6eba5d95bf7d53ae515f8a707bd402a4a4218712f160321b2a4198b96d68394819d042ecf37254f138c11960e00cc07

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061004c5760003560e01c80632e7ba6ef146100515780632eb4a7ab146100fe5780639e34070f1461011c578063fc0c546a14610162575b600080fd5b6100fc6004803603608081101561006757600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001906401000000008111156100b857600080fd5b8201836020820111156100ca57600080fd5b803590602001918460208302840111640100000000831117156100ec57600080fd5b90919293919293905050506101ac565b005b6101066104f1565b6040518082815260200191505060405180910390f35b6101486004803603602081101561013257600080fd5b8101908080359060200190929190505050610515565b604051808215151515815260200191505060405180910390f35b61016a610566565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101b585610515565b1561020b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806106976028913960400191505060405180910390fd5b6000858585604051602001808481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b815260140182815260200193505050506040516020818303038152906040528051906020012090506102e1838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050507f4a4218712f160321b2a4198b96d68394819d042ecf37254f138c11960e00cc078361058a565b610336576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806106bf6021913960400191505060405180910390fd5b61033f86610642565b7f000000000000000000000000c4436fbae6eba5d95bf7d53ae515f8a707bd402a73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86866040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156103e657600080fd5b505af11580156103fa573d6000803e3d6000fd5b505050506040513d602081101561041057600080fd5b8101908080519060200190929190505050610476576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806106e06023913960400191505060405180910390fd5b7f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed026868686604051808481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a1505050505050565b7f4a4218712f160321b2a4198b96d68394819d042ecf37254f138c11960e00cc0781565b600080610100838161052357fe5b0490506000610100848161053357fe5b06905060008060008481526020019081526020016000205490506000826001901b90508081831614945050505050919050565b7f000000000000000000000000c4436fbae6eba5d95bf7d53ae515f8a707bd402a81565b60008082905060008090505b85518110156106345760008682815181106105ad57fe5b602002602001015190508083116105f45782816040516020018083815260200182815260200192505050604051602081830303815290604052805190602001209250610626565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b508080600101915050610596565b508381149150509392505050565b6000610100828161064f57fe5b0490506000610100838161065f57fe5b069050806001901b60008084815260200190815260200160002054176000808481526020019081526020016000208190555050505056fe4d65726b6c654469737472696275746f723a2044726f7020616c726561647920636c61696d65642e4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f662e4d65726b6c654469737472696275746f723a205472616e73666572206661696c65642ea2646970667358221220e7564b019c42e0f8a3ad59bdcd9329a6545eb125a90229ef06c792707021aee264736f6c634300060b0033

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

000000000000000000000000c4436fbae6eba5d95bf7d53ae515f8a707bd402a4a4218712f160321b2a4198b96d68394819d042ecf37254f138c11960e00cc07

-----Decoded View---------------
Arg [0] : token_ (address): 0xc4436fBAE6eBa5d95bf7d53Ae515F8A707Bd402A
Arg [1] : merkleRoot_ (bytes32): 0x4a4218712f160321b2a4198b96d68394819d042ecf37254f138c11960e00cc07

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c4436fbae6eba5d95bf7d53ae515f8a707bd402a
Arg [1] : 4a4218712f160321b2a4198b96d68394819d042ecf37254f138c11960e00cc07


Deployed Bytecode Sourcemap

5479:1639:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6465:650;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5581:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5868:331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5535:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6465:650;6598:16;6608:5;6598:9;:16::i;:::-;6597:17;6589:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6709:12;6751:5;6758:7;6767:6;6734:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6724:51;;;;;;6709:66;;6794:49;6813:11;;6794:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6826:10;6838:4;6794:18;:49::i;:::-;6786:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6942:18;6954:5;6942:11;:18::i;:::-;6986:5;6979:22;;;7002:7;7011:6;6979:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6971:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7076:31;7084:5;7091:7;7100:6;7076:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6465:650;;;;;;:::o;5581:44::-;;;:::o;5868:331::-;5932:4;5949:24;5984:3;5976:5;:11;;;;;;5949:38;;5998:23;6032:3;6024:5;:11;;;;;;5998:37;;6046:19;6068:13;:31;6082:16;6068:31;;;;;;;;;;;;6046:53;;6110:12;6131:15;6126:1;:20;;6110:37;;6187:4;6179;6165:11;:18;:26;6158:33;;;;;;5868:331;;;:::o;5535:39::-;;;:::o;3475:796::-;3566:4;3583:20;3606:4;3583:27;;3628:9;3640:1;3628:13;;3623:525;3647:5;:12;3643:1;:16;3623:525;;;3681:20;3704:5;3710:1;3704:8;;;;;;;;;;;;;;3681:31;;3749:12;3733;:28;3729:408;;3903:12;3917;3886:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3876:55;;;;;;3861:70;;3729:408;;;4093:12;4107;4076:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4066:55;;;;;;4051:70;;3729:408;3623:525;3661:3;;;;;;;3623:525;;;;4259:4;4243:12;:20;4236:27;;;3475:796;;;;;:::o;6207:250::-;6262:24;6297:3;6289:5;:11;;;;;;6262:38;;6311:23;6345:3;6337:5;:11;;;;;;6311:37;;6433:15;6428:1;:20;;6393:13;:31;6407:16;6393:31;;;;;;;;;;;;:56;6359:13;:31;6373:16;6359:31;;;;;;;;;;;:90;;;;6207:250;;;:::o

Swarm Source

ipfs://e7564b019c42e0f8a3ad59bdcd9329a6545eb125a90229ef06c792707021aee2

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.