ETH Price: $3,298.28 (-3.72%)
Gas: 8 Gwei

Contract

0x0F994091543F04f2B175f456aB574dBBb80fb3EB
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Claim Tokens For195590162024-04-01 5:48:3593 days ago1711950515IN
0x0F994091...Bb80fb3EB
0 ETH0.0018870520.40300969
Claim Tokens For194848612024-03-21 18:37:59103 days ago1711046279IN
0x0F994091...Bb80fb3EB
0 ETH0.0025078933.26601029
Claim Tokens For194433302024-03-15 22:30:59109 days ago1710541859IN
0x0F994091...Bb80fb3EB
0 ETH0.0058820737.04588741
Claim Tokens For194422722024-03-15 18:57:11109 days ago1710529031IN
0x0F994091...Bb80fb3EB
0 ETH0.005689345.28943177
Claim Tokens For194238722024-03-13 4:49:35112 days ago1710305375IN
0x0F994091...Bb80fb3EB
0 ETH0.0037593140.6460726
Claim Tokens For193961842024-03-09 7:55:47116 days ago1709970947IN
0x0F994091...Bb80fb3EB
0 ETH0.0042212145.6401602
Claim Tokens For193961162024-03-09 7:42:11116 days ago1709970131IN
0x0F994091...Bb80fb3EB
0 ETH0.0040854544.17231844
Claim Tokens For192481392024-02-17 14:21:23137 days ago1708179683IN
0x0F994091...Bb80fb3EB
0 ETH0.0015376720.39649371
Claim Tokens For191951082024-02-10 3:42:59144 days ago1707536579IN
0x0F994091...Bb80fb3EB
0 ETH0.0022857830.31993716
Claim Tokens For191793362024-02-07 22:37:35146 days ago1707345455IN
0x0F994091...Bb80fb3EB
0 ETH0.0025515433.84507801
Claim Tokens For191147542024-01-29 21:06:47155 days ago1706562407IN
0x0F994091...Bb80fb3EB
0 ETH0.0013428414.51897885
Claim Tokens For190680992024-01-23 8:11:11162 days ago1705997471IN
0x0F994091...Bb80fb3EB
0 ETH0.000735299.75331323
Claim Tokens For190367152024-01-18 22:25:47166 days ago1705616747IN
0x0F994091...Bb80fb3EB
0 ETH0.0021913629.06744886
Claim Tokens For190073762024-01-14 20:01:23170 days ago1705262483IN
0x0F994091...Bb80fb3EB
0 ETH0.0016038321.2741592
Claim Tokens For189184962024-01-02 8:24:59183 days ago1704183899IN
0x0F994091...Bb80fb3EB
0 ETH0.0016785122.2647476
Claim Tokens For189094972024-01-01 2:02:35184 days ago1704074555IN
0x0F994091...Bb80fb3EB
0 ETH0.000708889.40309488
Claim Tokens For188936272023-12-29 20:33:11186 days ago1703881991IN
0x0F994091...Bb80fb3EB
0 ETH0.002241929.73779329
Claim Tokens For188596582023-12-25 2:03:23191 days ago1703469803IN
0x0F994091...Bb80fb3EB
0 ETH0.0013619818.06609946
Claim Tokens For188511472023-12-23 21:19:59192 days ago1703366399IN
0x0F994091...Bb80fb3EB
0 ETH0.0013008817.25563028
Claim Tokens For188504702023-12-23 19:03:11192 days ago1703358191IN
0x0F994091...Bb80fb3EB
0 ETH0.0015985621.20422343
Claim Tokens For188366872023-12-21 20:40:59194 days ago1703191259IN
0x0F994091...Bb80fb3EB
0 ETH0.0024377732.33591798
Claim Tokens For188266332023-12-20 10:49:35196 days ago1703069375IN
0x0F994091...Bb80fb3EB
0 ETH0.0052380169.47980845
Claim Tokens For188242142023-12-20 2:40:47196 days ago1703040047IN
0x0F994091...Bb80fb3EB
0 ETH0.0032775843.47570311
Claim Tokens For188000362023-12-16 17:14:23200 days ago1702746863IN
0x0F994091...Bb80fb3EB
0 ETH0.0073155951.63536452
Claim Tokens For187968612023-12-16 6:32:35200 days ago1702708355IN
0x0F994091...Bb80fb3EB
0 ETH0.003576247.43667312
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:
DaoClaimer

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : DaoClaimer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

interface TruthDao {
    function checkClaimed(uint256 tokenId) external view returns (bool);
    function transferOwnership(address newOwner) external;
    function aidrop(uint256[] calldata illuminatiIDs, address[] calldata addr) external;
}

contract DaoClaimer is Ownable, ReentrancyGuard {

    address public truthDaoToken = 0xe25f0fe686477F9Df3C2876C4902D3B85F75f33a;
    address public illuminatiToken = 0x8CB05890B7A640341069fB65DD4e070367f4D2E6;


    function claimTokensFor(uint256[] calldata illuminatiIds) public nonReentrant {
        require(illuminatiIds.length > 0, "Must claim at least one token");

        address[] memory owners = new address[](1);
        owners[0] = msg.sender;
        
        for(uint i = 0; i < illuminatiIds.length; i++) {
            require(IERC721(illuminatiToken).ownerOf(illuminatiIds[i]) == msg.sender, "You do not own this token");
            require(!isTokenClaimed(illuminatiIds[i]), "Token already claimed");

            uint256[] memory ids = new uint256[](1);
            ids[0] = illuminatiIds[i];

            TruthDao(truthDaoToken).aidrop(ids, owners);
        }
    }

    function isTokenClaimed(uint256 tokenId) public view returns (bool) {
        return TruthDao(truthDaoToken).checkClaimed(tokenId);
    }

    function returnOwnership() public onlyOwner {
        TruthDao(truthDaoToken).transferOwnership(msg.sender);
    }

}

File 2 of 6 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 3 of 6 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 of 6 : 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 5 of 6 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 6 of 6 : 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
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"uint256[]","name":"illuminatiIds","type":"uint256[]"}],"name":"claimTokensFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"illuminatiToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isTokenClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"returnOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"truthDaoToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600280546001600160a01b031990811673e25f0fe686477f9df3c2876c4902d3b85f75f33a1790915560038054909116738cb05890b7a640341069fb65dd4e070367f4d2e617905534801561005857600080fd5b506100623361006b565b600180556100bb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610886806100ca6000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c80636cedd32b1161005b5780636cedd32b146100ed578063715018a6146101105780638da5cb5b14610118578063f2fde38b1461012957600080fd5b8063203ac0fa1461008d578063297d1a34146100bd57806353ddaed9146100c7578063624d4077146100da575b600080fd5b6003546100a0906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6100c561013c565b005b6100c56100d5366004610689565b6101a3565b6002546100a0906001600160a01b031681565b6101006100fb3660046106fe565b610485565b60405190151581526020016100b4565b6100c56104f9565b6000546001600160a01b03166100a0565b6100c561013736600461072c565b61050d565b610144610586565b60025460405163f2fde38b60e01b81523360048201526001600160a01b039091169063f2fde38b90602401600060405180830381600087803b15801561018957600080fd5b505af115801561019d573d6000803e3d6000fd5b50505050565b6101ab6105e0565b806101fd5760405162461bcd60e51b815260206004820152601d60248201527f4d75737420636c61696d206174206c65617374206f6e6520746f6b656e00000060448201526064015b60405180910390fd5b60408051600180825281830190925260009160208083019080368337019050509050338160008151811061023357610233610750565b60200260200101906001600160a01b031690816001600160a01b03168152505060005b828110156104765760035433906001600160a01b0316636352211e86868581811061028357610283610750565b905060200201356040518263ffffffff1660e01b81526004016102a891815260200190565b602060405180830381865afa1580156102c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102e99190610766565b6001600160a01b03161461033f5760405162461bcd60e51b815260206004820152601960248201527f596f7520646f206e6f74206f776e207468697320746f6b656e0000000000000060448201526064016101f4565b61036084848381811061035457610354610750565b90506020020135610485565b156103a55760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e4818db185a5b5959605a1b60448201526064016101f4565b604080516001808252818301909252600091602080830190803683370190505090508484838181106103d9576103d9610750565b90506020020135816000815181106103f3576103f3610750565b6020908102919091010152600254604051630742914d60e31b81526001600160a01b0390911690633a148a68906104309084908790600401610783565b600060405180830381600087803b15801561044a57600080fd5b505af115801561045e573d6000803e3d6000fd5b5050505050808061046e90610807565b915050610256565b505061048160018055565b5050565b600254604051631ad2ae5560e11b8152600481018390526000916001600160a01b0316906335a55caa90602401602060405180830381865afa1580156104cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f3919061082e565b92915050565b610501610586565b61050b6000610639565b565b610515610586565b6001600160a01b03811661057a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016101f4565b61058381610639565b50565b6000546001600160a01b0316331461050b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101f4565b6002600154036106325760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016101f4565b6002600155565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806020838503121561069c57600080fd5b823567ffffffffffffffff808211156106b457600080fd5b818501915085601f8301126106c857600080fd5b8135818111156106d757600080fd5b8660208260051b85010111156106ec57600080fd5b60209290920196919550909350505050565b60006020828403121561071057600080fd5b5035919050565b6001600160a01b038116811461058357600080fd5b60006020828403121561073e57600080fd5b813561074981610717565b9392505050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561077857600080fd5b815161074981610717565b604080825283519082018190526000906020906060840190828701845b828110156107bc578151845292840192908401906001016107a0565b5050508381038285015284518082528583019183019060005b818110156107fa5783516001600160a01b0316835292840192918401916001016107d5565b5090979650505050505050565b60006001820161082757634e487b7160e01b600052601160045260246000fd5b5060010190565b60006020828403121561084057600080fd5b8151801515811461074957600080fdfea26469706673582212209babffb850e5af8b89089df50e5191c5893148da37945dc1fcb90607222df35064736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100885760003560e01c80636cedd32b1161005b5780636cedd32b146100ed578063715018a6146101105780638da5cb5b14610118578063f2fde38b1461012957600080fd5b8063203ac0fa1461008d578063297d1a34146100bd57806353ddaed9146100c7578063624d4077146100da575b600080fd5b6003546100a0906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6100c561013c565b005b6100c56100d5366004610689565b6101a3565b6002546100a0906001600160a01b031681565b6101006100fb3660046106fe565b610485565b60405190151581526020016100b4565b6100c56104f9565b6000546001600160a01b03166100a0565b6100c561013736600461072c565b61050d565b610144610586565b60025460405163f2fde38b60e01b81523360048201526001600160a01b039091169063f2fde38b90602401600060405180830381600087803b15801561018957600080fd5b505af115801561019d573d6000803e3d6000fd5b50505050565b6101ab6105e0565b806101fd5760405162461bcd60e51b815260206004820152601d60248201527f4d75737420636c61696d206174206c65617374206f6e6520746f6b656e00000060448201526064015b60405180910390fd5b60408051600180825281830190925260009160208083019080368337019050509050338160008151811061023357610233610750565b60200260200101906001600160a01b031690816001600160a01b03168152505060005b828110156104765760035433906001600160a01b0316636352211e86868581811061028357610283610750565b905060200201356040518263ffffffff1660e01b81526004016102a891815260200190565b602060405180830381865afa1580156102c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102e99190610766565b6001600160a01b03161461033f5760405162461bcd60e51b815260206004820152601960248201527f596f7520646f206e6f74206f776e207468697320746f6b656e0000000000000060448201526064016101f4565b61036084848381811061035457610354610750565b90506020020135610485565b156103a55760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e4818db185a5b5959605a1b60448201526064016101f4565b604080516001808252818301909252600091602080830190803683370190505090508484838181106103d9576103d9610750565b90506020020135816000815181106103f3576103f3610750565b6020908102919091010152600254604051630742914d60e31b81526001600160a01b0390911690633a148a68906104309084908790600401610783565b600060405180830381600087803b15801561044a57600080fd5b505af115801561045e573d6000803e3d6000fd5b5050505050808061046e90610807565b915050610256565b505061048160018055565b5050565b600254604051631ad2ae5560e11b8152600481018390526000916001600160a01b0316906335a55caa90602401602060405180830381865afa1580156104cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f3919061082e565b92915050565b610501610586565b61050b6000610639565b565b610515610586565b6001600160a01b03811661057a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016101f4565b61058381610639565b50565b6000546001600160a01b0316331461050b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101f4565b6002600154036106325760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016101f4565b6002600155565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806020838503121561069c57600080fd5b823567ffffffffffffffff808211156106b457600080fd5b818501915085601f8301126106c857600080fd5b8135818111156106d757600080fd5b8660208260051b85010111156106ec57600080fd5b60209290920196919550909350505050565b60006020828403121561071057600080fd5b5035919050565b6001600160a01b038116811461058357600080fd5b60006020828403121561073e57600080fd5b813561074981610717565b9392505050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561077857600080fd5b815161074981610717565b604080825283519082018190526000906020906060840190828701845b828110156107bc578151845292840192908401906001016107a0565b5050508381038285015284518082528583019183019060005b818110156107fa5783516001600160a01b0316835292840192918401916001016107d5565b5090979650505050505050565b60006001820161082757634e487b7160e01b600052601160045260246000fd5b5060010190565b60006020828403121561084057600080fd5b8151801515811461074957600080fdfea26469706673582212209babffb850e5af8b89089df50e5191c5893148da37945dc1fcb90607222df35064736f6c63430008120033

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.