POL Price: $0.706366 (+21.71%)
 

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Update Whitelist630617772024-10-15 8:50:1948 days ago1728982219IN
0x1B756155...917cBB7C3
0 POL0.0009387731.24559941
Update Whitelist613728682024-09-03 10:55:2390 days ago1725360923IN
0x1B756155...917cBB7C3
0 POL0.0009125530.37282475
Update Whitelist596641872024-07-22 8:40:17133 days ago1721637617IN
0x1B756155...917cBB7C3
0 POL0.0009013530.00000013
Update Whitelist596640982024-07-22 8:37:09133 days ago1721637429IN
0x1B756155...917cBB7C3
0 POL0.0009013530.00000011
Update Whitelist577532882024-06-04 9:50:19181 days ago1717494619IN
0x1B756155...917cBB7C3
0 POL0.0009013530.00000009
Update Whitelist577531662024-06-04 9:45:27181 days ago1717494327IN
0x1B756155...917cBB7C3
0 POL0.0009013530.00000006
Update Whitelist577229362024-06-03 14:30:20182 days ago1717425020IN
0x1B756155...917cBB7C3
0 POL0.0009013530.00000027
Update Whitelist570779052024-05-17 17:10:23199 days ago1715965823IN
0x1B756155...917cBB7C3
0 POL0.0009447431.44433769
Update Whitelist568938762024-05-12 20:35:21204 days ago1715546121IN
0x1B756155...917cBB7C3
0 POL0.0009013530.00000003
Update Whitelist568543042024-05-11 20:01:57205 days ago1715457717IN
0x1B756155...917cBB7C3
0 POL0.0009009930.00000002
Update Whitelist568541222024-05-11 19:55:29205 days ago1715457329IN
0x1B756155...917cBB7C3
0 POL0.0009013530.00000002
Update Whitelist568539972024-05-11 19:50:31205 days ago1715457031IN
0x1B756155...917cBB7C3
0 POL0.0009013530.00000002
Update Whitelist568538522024-05-11 19:45:23205 days ago1715456723IN
0x1B756155...917cBB7C3
0 POL0.0009013530.00000003
Update Whitelist568537212024-05-11 19:40:45205 days ago1715456445IN
0x1B756155...917cBB7C3
0 POL0.0009013530.00000002
Update Whitelist568535842024-05-11 19:35:51205 days ago1715456151IN
0x1B756155...917cBB7C3
0 POL0.0009009930.00000003
Update Whitelist567242692024-05-08 13:31:37208 days ago1715175097IN
0x1B756155...917cBB7C3
0 POL0.0009013530.00000041
Update Whitelist567241092024-05-08 13:25:25208 days ago1715174725IN
0x1B756155...917cBB7C3
0 POL0.0009013530.00000048
Update Whitelist566771732024-05-07 8:40:26209 days ago1715071226IN
0x1B756155...917cBB7C3
0 POL0.0009197230.6117212
Update Whitelist566358552024-05-06 6:55:25211 days ago1714978525IN
0x1B756155...917cBB7C3
0 POL0.0009013530.00000114
Update Whitelist565284552024-05-03 11:25:30213 days ago1714735530IN
0x1B756155...917cBB7C3
0 POL0.0009013530.00000349
Update Whitelist565249182024-05-03 8:55:40213 days ago1714726540IN
0x1B756155...917cBB7C3
0 POL0.0009013530.00000005
Update Whitelist564885032024-05-02 8:55:28214 days ago1714640128IN
0x1B756155...917cBB7C3
0 POL0.0015767452.47931261
Update Whitelist564589632024-05-01 13:25:24215 days ago1714569924IN
0x1B756155...917cBB7C3
0 POL0.0028665695.40900495
Update Whitelist564467802024-05-01 5:20:25216 days ago1714540825IN
0x1B756155...917cBB7C3
0 POL0.0019962666.4425437
Update Whitelist564147442024-04-30 8:20:25216 days ago1714465225IN
0x1B756155...917cBB7C3
0 POL0.00904129300.92517327
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SoulWhitelist

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
london EvmVersion
File 1 of 4 : soulwhitelist.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

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

contract SoulWhitelist is Ownable {

    bytes32 public _whitelist;
    address public _admin;

    event WhitelistUpdated(bytes32 merkle_root);

    constructor() {}

    modifier onlyAdmin() {
        require(msg.sender == _admin || msg.sender == owner(), "Only Admin");
        _;
    }

    // MARK: - Only Owner
    function setAdmin(address admin) external onlyOwner {
        _admin = admin;
    }

    
    // MARK: - Only Admin
    function updateWhitelist(bytes32 merkle_root) external onlyAdmin {
        _whitelist = merkle_root;
        emit WhitelistUpdated(merkle_root);
    }

    // MARK: - Public
    function whitelisted(
        bytes32[] memory proof, 
        address account, 
        uint256 amount, 
        uint256 level
        ) public view returns (uint256) {
        bytes32 leaf = keccak256(bytes.concat(keccak256(abi.encode(account, amount, level))));
        uint256 val = MerkleProof.verify(proof, _whitelist, leaf) ? amount : 0;

        return val;
    }


}

File 2 of 4 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 3 of 4 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 4 of 4 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

Settings
{
  "remappings": [
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "@semanticSBT/=lib/semanticSBT/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "semanticSBT/=lib/semanticSBT/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "bytecodeHash": "ipfs"
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "london",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"merkle_root","type":"bytes32"}],"name":"WhitelistUpdated","type":"event"},{"inputs":[],"name":"_admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_whitelist","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":"admin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkle_root","type":"bytes32"}],"name":"updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"level","type":"uint256"}],"name":"whitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61060a8061007e6000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c80638da5cb5b1161005b5780638da5cb5b146100ed57806397f376a8146100fe578063ad61815e1461011f578063f2fde38b1461012857600080fd5b806301bc45c91461008d5780632152cb02146100bd578063704b6c02146100d2578063715018a6146100e5575b600080fd5b6002546100a0906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6100d06100cb366004610451565b61013b565b005b6100d06100e0366004610486565b6101d7565b6100d0610201565b6000546001600160a01b03166100a0565b61011161010c3660046104b7565b610215565b6040519081526020016100b4565b61011160015481565b6100d0610136366004610486565b610299565b6002546001600160a01b031633148061015e57506000546001600160a01b031633145b61019c5760405162461bcd60e51b815260206004820152600a60248201526927b7363c9020b236b4b760b11b60448201526064015b60405180910390fd5b60018190556040518181527f136c0469109f45a2bf2f764309926b484a507d7645843502b6a6a68b2e5dc0eb9060200160405180910390a150565b6101df610312565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b610209610312565b610213600061036c565b565b604080516001600160a01b038516602082015290810183905260608101829052600090819060800160408051601f1981840301815282825280516020918201209083015201604051602081830303815290604052805190602001209050600061028187600154846103bc565b61028c57600061028e565b845b979650505050505050565b6102a1610312565b6001600160a01b0381166103065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610193565b61030f8161036c565b50565b6000546001600160a01b031633146102135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610193565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000826103c985846103d2565b14949350505050565b600081815b845181101561041757610403828683815181106103f6576103f6610597565b602002602001015161041f565b91508061040f816105ad565b9150506103d7565b509392505050565b600081831061043b57600082815260208490526040902061044a565b60008381526020839052604090205b9392505050565b60006020828403121561046357600080fd5b5035919050565b80356001600160a01b038116811461048157600080fd5b919050565b60006020828403121561049857600080fd5b61044a8261046a565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156104cd57600080fd5b843567ffffffffffffffff808211156104e557600080fd5b818701915087601f8301126104f957600080fd5b813560208282111561050d5761050d6104a1565b8160051b604051601f19603f83011681018181108682111715610532576105326104a1565b60405292835281830193508481018201928b84111561055057600080fd5b948201945b8386101561056e57853585529482019493820193610555565b985061057d905089820161046a565b979a97995050505060408601359560600135949350505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016105cd57634e487b7160e01b600052601160045260246000fd5b506001019056fea2646970667358221220c9b5043a720d9890fb99e6138e04d0146ac16fcacb00c857ba62ccdb76b4e84664736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100885760003560e01c80638da5cb5b1161005b5780638da5cb5b146100ed57806397f376a8146100fe578063ad61815e1461011f578063f2fde38b1461012857600080fd5b806301bc45c91461008d5780632152cb02146100bd578063704b6c02146100d2578063715018a6146100e5575b600080fd5b6002546100a0906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6100d06100cb366004610451565b61013b565b005b6100d06100e0366004610486565b6101d7565b6100d0610201565b6000546001600160a01b03166100a0565b61011161010c3660046104b7565b610215565b6040519081526020016100b4565b61011160015481565b6100d0610136366004610486565b610299565b6002546001600160a01b031633148061015e57506000546001600160a01b031633145b61019c5760405162461bcd60e51b815260206004820152600a60248201526927b7363c9020b236b4b760b11b60448201526064015b60405180910390fd5b60018190556040518181527f136c0469109f45a2bf2f764309926b484a507d7645843502b6a6a68b2e5dc0eb9060200160405180910390a150565b6101df610312565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b610209610312565b610213600061036c565b565b604080516001600160a01b038516602082015290810183905260608101829052600090819060800160408051601f1981840301815282825280516020918201209083015201604051602081830303815290604052805190602001209050600061028187600154846103bc565b61028c57600061028e565b845b979650505050505050565b6102a1610312565b6001600160a01b0381166103065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610193565b61030f8161036c565b50565b6000546001600160a01b031633146102135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610193565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000826103c985846103d2565b14949350505050565b600081815b845181101561041757610403828683815181106103f6576103f6610597565b602002602001015161041f565b91508061040f816105ad565b9150506103d7565b509392505050565b600081831061043b57600082815260208490526040902061044a565b60008381526020839052604090205b9392505050565b60006020828403121561046357600080fd5b5035919050565b80356001600160a01b038116811461048157600080fd5b919050565b60006020828403121561049857600080fd5b61044a8261046a565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156104cd57600080fd5b843567ffffffffffffffff808211156104e557600080fd5b818701915087601f8301126104f957600080fd5b813560208282111561050d5761050d6104a1565b8160051b604051601f19603f83011681018181108682111715610532576105326104a1565b60405292835281830193508481018201928b84111561055057600080fd5b948201945b8386101561056e57853585529482019493820193610555565b985061057d905089820161046a565b979a97995050505060408601359560600135949350505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016105cd57634e487b7160e01b600052601160045260246000fd5b506001019056fea2646970667358221220c9b5043a720d9890fb99e6138e04d0146ac16fcacb00c857ba62ccdb76b4e84664736f6c63430008110033

Block Transaction 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
[ 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.