ETH Price: $2,137.96 (+0.47%)

Contract

0x64910f368DF4F3Cd138Ff8AF88cB1f49Ea6b4d75
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Withdraw164125952023-01-15 13:47:351164 days ago1673790455IN
0x64910f36...9Ea6b4d75
0 ETH0.0005690617.06458224
Buy159155302022-11-07 3:42:471233 days ago1667792567IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0022309912.9056034
Buy159153282022-11-07 3:02:111233 days ago1667790131IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0020728211.79955389
Buy158721972022-11-01 2:24:231239 days ago1667269463IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0017463510.10212202
Buy158547862022-10-29 16:04:471241 days ago1667059487IN
0x64910f36...9Ea6b4d75
0.05 ETH0.004441825.69449211
Buy158523762022-10-29 7:58:351242 days ago1667030315IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0017871810.33829483
Buy158513912022-10-29 4:39:591242 days ago1667018399IN
0x64910f36...9Ea6b4d75
0.05 ETH0.001549738.96475755
Buy158482222022-10-28 18:02:231242 days ago1666980143IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0047797527.64940361
Buy158482102022-10-28 17:59:591242 days ago1666979999IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0046724427.02866671
Buy158477582022-10-28 16:28:351242 days ago1666974515IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0085711648.79130729
Buy158477482022-10-28 16:26:351242 days ago1666974395IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0110635862.9793453
Buy158477462022-10-28 16:26:111242 days ago1666974371IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0122786669.89619379
Buy158477172022-10-28 16:20:231242 days ago1666974023IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0042503224.19496361
Buy158477012022-10-28 16:16:591242 days ago1666973819IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0041638723.70281459
Buy158476932022-10-28 16:15:231242 days ago1666973723IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0036652320.86430782
Buy158476832022-10-28 16:13:231242 days ago1666973603IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0042108223.97006541
Buy158476592022-10-28 16:08:351242 days ago1666973315IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0054042330.76355418
Buy158476542022-10-28 16:07:351242 days ago1666973255IN
0x64910f36...9Ea6b4d75
0.05 ETH0.005116229.12397103
Buy158476542022-10-28 16:07:351242 days ago1666973255IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0050704429.33094957
Buy158476342022-10-28 16:03:351242 days ago1666973015IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0070798140.95454349
Buy158476312022-10-28 16:02:591242 days ago1666972979IN
0x64910f36...9Ea6b4d75
0.05 ETH0.0070673440.88240945
Unpause158434212022-10-28 1:56:111243 days ago1666922171IN
0x64910f36...9Ea6b4d75
0 ETH0.0003197611.53123935
Pause157981692022-10-21 18:07:591249 days ago1666375679IN
0x64910f36...9Ea6b4d75
0 ETH0.0015197354.79269465
Unpause157981662022-10-21 18:07:231249 days ago1666375643IN
0x64910f36...9Ea6b4d75
0 ETH0.0017117661.72956793
Set Auction157981622022-10-21 18:06:351249 days ago1666375595IN
0x64910f36...9Ea6b4d75
0 ETH0.0018516559.58863267
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer164125952023-01-15 13:47:351164 days ago1673790455
0x64910f36...9Ea6b4d75
1 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
HotlinePublicSale

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

interface NFT {
    function mint(address to, uint256 quantity) external;
    function maxSupply() external view returns (uint256);
    function totalSupply() external view returns (uint256);
}

contract HotlinePublicSale is Ownable, Pausable, ReentrancyGuard {
    address public _tokenAddress;
    uint256 public _auctionStartTime;
    uint256 public _salePrice;

    constructor() {
        _pause();
        _auctionStartTime = 1667001600; // Oct 29, 2022 00:00:00 AM GMT+08:00
        _salePrice = 0.05 ether;
    }

    function buy() external payable nonReentrant whenNotPaused {
        require(msg.sender == tx.origin, "Runtime error: contract not allowed");
        require(
            block.timestamp > _auctionStartTime,
            "Runtime error: public sale not started"
        );
        require(
            msg.value >= _salePrice,
            "Runtime error: ether value not enough"
        );
        NFT(_tokenAddress).mint(msg.sender, 1);
    }

    function auctionStartTime() public view returns (uint256) {
        return _auctionStartTime;
    }

    function salePrice() public view returns (uint256) {
        return _salePrice;
    }

    function maxSupply() public view returns (uint256) {
        return NFT(_tokenAddress).maxSupply();
    }

    function totalSupply() public view returns (uint256) {
        return NFT(_tokenAddress).totalSupply();
    }

    function setTokenAddress(address tokenAddress) external onlyOwner {
        _tokenAddress = tokenAddress;
    }

    function setAuction(uint256 auctionStartTime_, uint256 salePrice_)
        external
        onlyOwner
    {
        _auctionStartTime = auctionStartTime_;
        _salePrice = salePrice_;
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    function withdraw(address to) public onlyOwner {
        (bool sent, ) = to.call{value: address(this).balance}("");
        require(sent, "Runtime error: withdraw failed");
    }
}

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 5 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

// 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"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"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":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"_auctionStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"auctionStartTime_","type":"uint256"},{"internalType":"uint256","name":"salePrice_","type":"uint256"}],"name":"setAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"setTokenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b5061001a3361004b565b6000805460ff60a01b191690556001805561003361009b565b63635c6d0060035566b1a2bc2ec50000600455610154565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6100a36100fb565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586100de3390565b6040516001600160a01b03909116815260200160405180910390a1565b61010e600054600160a01b900460ff1690565b156101525760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b565b6109a9806101636000396000f3fe6080604052600436106100fe5760003560e01c8063715018a611610095578063d5abeb0111610064578063d5abeb011461026a578063eb54f9ec1461027f578063ec40217514610294578063f2fde38b146102aa578063f51f96dd146102ca57600080fd5b8063715018a61461021a5780638456cb591461022f5780638da5cb5b14610244578063a6f2ae3a1461026257600080fd5b80634b3e4f0d116100d15780634b3e4f0d1461017857806351cff8d914610198578063543fcf03146101b85780635c975abb146101f057600080fd5b806318160ddd1461010357806326a4e8d21461012b5780633f4ba83a1461014d57806340e2c5e914610162575b600080fd5b34801561010f57600080fd5b506101186102df565b6040519081526020015b60405180910390f35b34801561013757600080fd5b5061014b610146366004610908565b610361565b005b34801561015957600080fd5b5061014b61038b565b34801561016e57600080fd5b5061011860035481565b34801561018457600080fd5b5061014b610193366004610938565b61039d565b3480156101a457600080fd5b5061014b6101b3366004610908565b6103b0565b3480156101c457600080fd5b506002546101d8906001600160a01b031681565b6040516001600160a01b039091168152602001610122565b3480156101fc57600080fd5b50600054600160a01b900460ff166040519015158152602001610122565b34801561022657600080fd5b5061014b610464565b34801561023b57600080fd5b5061014b610476565b34801561025057600080fd5b506000546001600160a01b03166101d8565b61014b610486565b34801561027657600080fd5b5061011861066b565b34801561028b57600080fd5b50600354610118565b3480156102a057600080fd5b5061011860045481565b3480156102b657600080fd5b5061014b6102c5366004610908565b6106b0565b3480156102d657600080fd5b50600454610118565b600254604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561032457600080fd5b505afa158015610338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061035c919061095a565b905090565b610369610729565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b610393610729565b61039b610783565b565b6103a5610729565b600391909155600455565b6103b8610729565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610405576040519150601f19603f3d011682016040523d82523d6000602084013e61040a565b606091505b50509050806104605760405162461bcd60e51b815260206004820152601e60248201527f52756e74696d65206572726f723a207769746864726177206661696c6564000060448201526064015b60405180910390fd5b5050565b61046c610729565b61039b60006107d8565b61047e610729565b61039b610828565b600260015414156104d95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610457565b60026001556104e661086b565b3332146105415760405162461bcd60e51b815260206004820152602360248201527f52756e74696d65206572726f723a20636f6e7472616374206e6f7420616c6c6f6044820152621dd95960ea1b6064820152608401610457565b60035442116105a15760405162461bcd60e51b815260206004820152602660248201527f52756e74696d65206572726f723a207075626c69632073616c65206e6f7420736044820152651d185c9d195960d21b6064820152608401610457565b6004543410156106015760405162461bcd60e51b815260206004820152602560248201527f52756e74696d65206572726f723a2065746865722076616c7565206e6f7420656044820152640dcdeeaced60db1b6064820152608401610457565b6002546040516340c10f1960e01b8152336004820152600160248201526001600160a01b03909116906340c10f1990604401600060405180830381600087803b15801561064d57600080fd5b505af1158015610661573d6000803e3d6000fd5b5050600180555050565b6002546040805163d5abeb0160e01b815290516000926001600160a01b03169163d5abeb01916004808301926020929190829003018186803b15801561032457600080fd5b6106b8610729565b6001600160a01b03811661071d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610457565b610726816107d8565b50565b6000546001600160a01b0316331461039b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610457565b61078b6108b8565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61083061086b565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586107bb3390565b600054600160a01b900460ff161561039b5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610457565b600054600160a01b900460ff1661039b5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610457565b60006020828403121561091a57600080fd5b81356001600160a01b038116811461093157600080fd5b9392505050565b6000806040838503121561094b57600080fd5b50508035926020909101359150565b60006020828403121561096c57600080fd5b505191905056fea26469706673582212204bb2897b297a1dc417cbeb8bebb62affb2e9b56225256e91be10dbb632cc725d64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106100fe5760003560e01c8063715018a611610095578063d5abeb0111610064578063d5abeb011461026a578063eb54f9ec1461027f578063ec40217514610294578063f2fde38b146102aa578063f51f96dd146102ca57600080fd5b8063715018a61461021a5780638456cb591461022f5780638da5cb5b14610244578063a6f2ae3a1461026257600080fd5b80634b3e4f0d116100d15780634b3e4f0d1461017857806351cff8d914610198578063543fcf03146101b85780635c975abb146101f057600080fd5b806318160ddd1461010357806326a4e8d21461012b5780633f4ba83a1461014d57806340e2c5e914610162575b600080fd5b34801561010f57600080fd5b506101186102df565b6040519081526020015b60405180910390f35b34801561013757600080fd5b5061014b610146366004610908565b610361565b005b34801561015957600080fd5b5061014b61038b565b34801561016e57600080fd5b5061011860035481565b34801561018457600080fd5b5061014b610193366004610938565b61039d565b3480156101a457600080fd5b5061014b6101b3366004610908565b6103b0565b3480156101c457600080fd5b506002546101d8906001600160a01b031681565b6040516001600160a01b039091168152602001610122565b3480156101fc57600080fd5b50600054600160a01b900460ff166040519015158152602001610122565b34801561022657600080fd5b5061014b610464565b34801561023b57600080fd5b5061014b610476565b34801561025057600080fd5b506000546001600160a01b03166101d8565b61014b610486565b34801561027657600080fd5b5061011861066b565b34801561028b57600080fd5b50600354610118565b3480156102a057600080fd5b5061011860045481565b3480156102b657600080fd5b5061014b6102c5366004610908565b6106b0565b3480156102d657600080fd5b50600454610118565b600254604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561032457600080fd5b505afa158015610338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061035c919061095a565b905090565b610369610729565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b610393610729565b61039b610783565b565b6103a5610729565b600391909155600455565b6103b8610729565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610405576040519150601f19603f3d011682016040523d82523d6000602084013e61040a565b606091505b50509050806104605760405162461bcd60e51b815260206004820152601e60248201527f52756e74696d65206572726f723a207769746864726177206661696c6564000060448201526064015b60405180910390fd5b5050565b61046c610729565b61039b60006107d8565b61047e610729565b61039b610828565b600260015414156104d95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610457565b60026001556104e661086b565b3332146105415760405162461bcd60e51b815260206004820152602360248201527f52756e74696d65206572726f723a20636f6e7472616374206e6f7420616c6c6f6044820152621dd95960ea1b6064820152608401610457565b60035442116105a15760405162461bcd60e51b815260206004820152602660248201527f52756e74696d65206572726f723a207075626c69632073616c65206e6f7420736044820152651d185c9d195960d21b6064820152608401610457565b6004543410156106015760405162461bcd60e51b815260206004820152602560248201527f52756e74696d65206572726f723a2065746865722076616c7565206e6f7420656044820152640dcdeeaced60db1b6064820152608401610457565b6002546040516340c10f1960e01b8152336004820152600160248201526001600160a01b03909116906340c10f1990604401600060405180830381600087803b15801561064d57600080fd5b505af1158015610661573d6000803e3d6000fd5b5050600180555050565b6002546040805163d5abeb0160e01b815290516000926001600160a01b03169163d5abeb01916004808301926020929190829003018186803b15801561032457600080fd5b6106b8610729565b6001600160a01b03811661071d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610457565b610726816107d8565b50565b6000546001600160a01b0316331461039b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610457565b61078b6108b8565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61083061086b565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586107bb3390565b600054600160a01b900460ff161561039b5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610457565b600054600160a01b900460ff1661039b5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610457565b60006020828403121561091a57600080fd5b81356001600160a01b038116811461093157600080fd5b9392505050565b6000806040838503121561094b57600080fd5b50508035926020909101359150565b60006020828403121561096c57600080fd5b505191905056fea26469706673582212204bb2897b297a1dc417cbeb8bebb62affb2e9b56225256e91be10dbb632cc725d64736f6c63430008090033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ 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.