ETH Price: $3,464.50 (+2.17%)
Gas: 7 Gwei

Contract

0x8d9ebD38442B681A253e5A1f7Dc5721B269904bf
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
V1To V2179968882023-08-26 5:53:23310 days ago1693029203IN
0x8d9ebD38...B269904bf
0 ETH0.0021098511.58556518
V2To V1164336942023-01-18 12:28:59530 days ago1674044939IN
0x8d9ebD38...B269904bf
0 ETH0.0072351717.44844158
V2To V1163177422023-01-02 7:57:35546 days ago1672646255IN
0x8d9ebD38...B269904bf
0 ETH0.0046402414.35764336
V2To V1163177392023-01-02 7:56:59546 days ago1672646219IN
0x8d9ebD38...B269904bf
0 ETH0.0032760315.1137048
V2To V1163129942023-01-01 16:04:47546 days ago1672589087IN
0x8d9ebD38...B269904bf
0 ETH0.0109643320.44844158
V1To V2163129562023-01-01 15:57:11546 days ago1672588631IN
0x8d9ebD38...B269904bf
0 ETH0.0024134414.62596689
V2To V1156920092022-10-06 22:21:11633 days ago1665094871IN
0x8d9ebD38...B269904bf
0 ETH0.003596027.0303571
V2To V1156919942022-10-06 22:18:11633 days ago1665094691IN
0x8d9ebD38...B269904bf
0 ETH0.004078417.6031122
V1To V2156756322022-10-04 15:22:23635 days ago1664896943IN
0x8d9ebD38...B269904bf
0 ETH0.002502914.91501141
V1To V2156756322022-10-04 15:22:23635 days ago1664896943IN
0x8d9ebD38...B269904bf
0 ETH0.0026114614.91501141
V1To V2156756322022-10-04 15:22:23635 days ago1664896943IN
0x8d9ebD38...B269904bf
0 ETH0.0026484414.91501141
V1To V2156756322022-10-04 15:22:23635 days ago1664896943IN
0x8d9ebD38...B269904bf
0 ETH0.0026854114.91501141
V1To V2156756322022-10-04 15:22:23635 days ago1664896943IN
0x8d9ebD38...B269904bf
0 ETH0.0027223914.91501141
V1To V2156756322022-10-04 15:22:23635 days ago1664896943IN
0x8d9ebD38...B269904bf
0 ETH0.0024050713
V1To V2156348842022-09-28 22:40:35641 days ago1664404835IN
0x8d9ebD38...B269904bf
0 ETH0.0021893613.04659091
V1To V2156348552022-09-28 22:34:47641 days ago1664404487IN
0x8d9ebD38...B269904bf
0 ETH0.001710629.9287813
V1To V2155561072022-09-17 21:55:23652 days ago1663451723IN
0x8d9ebD38...B269904bf
0 ETH0.000820144.97027375
V2To V1155314662022-09-14 6:32:51656 days ago1663137171IN
0x8d9ebD38...B269904bf
0 ETH0.001796997.60373968
V2To V1155314552022-09-14 6:31:09656 days ago1663137069IN
0x8d9ebD38...B269904bf
0 ETH0.0037096711.2201355
V2To V1155314542022-09-14 6:30:39656 days ago1663137039IN
0x8d9ebD38...B269904bf
0 ETH0.0033783510.14108144
V1To V2153437522022-08-15 3:41:15686 days ago1660534875IN
0x8d9ebD38...B269904bf
0 ETH0.0032170917.39809625
V1To V2153437412022-08-15 3:38:33686 days ago1660534713IN
0x8d9ebD38...B269904bf
0 ETH0.0033142317.49950813
V1To V2152876692022-08-06 8:28:53695 days ago1659774533IN
0x8d9ebD38...B269904bf
0 ETH0.00142147.68698198
V1To V2152876692022-08-06 8:28:53695 days ago1659774533IN
0x8d9ebD38...B269904bf
0 ETH0.001343897.68698198
V1To V2152876672022-08-06 8:28:08695 days ago1659774488IN
0x8d9ebD38...B269904bf
0 ETH0.001219496.97775275
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:
EtherTulipsBridge

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : EtherTulipsBridge.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

import "./IERC721Draft.sol";

contract EtherTulipsBridge is ERC721Holder, Ownable {
    address public v1Address = address(0);
    address public v2Address = address(0);

    IERC721Draft private v1Contract;
    IERC721 private v2Contract;

    function v1ToV2(uint256 _tokenId) public {
        require(_initialized(), "contract addresses not set");
        require(v1Contract.ownerOf(_tokenId) == _msgSender(), "only the token owner can bridge");
        require(_tokenId <= 7250, "only tokens with id <= 7250 can be bridged");

        v1Contract.transferFrom(_msgSender(), address(this), _tokenId);
        v2Contract.safeTransferFrom(address(this), _msgSender(), _tokenId);
    }

    function v2ToV1(uint256 _tokenId) public {
        require(_initialized(), "contract addresses not set");
        require(v2Contract.ownerOf(_tokenId) == _msgSender(), "only the token owner can bridge");
        require(_tokenId <= 7250, "only tokens with id <= 7250 can be bridged");

        v2Contract.safeTransferFrom(_msgSender(), address(this), _tokenId);
        v1Contract.transfer(_msgSender(), _tokenId);
    }

    function setContracts(address _v1Address, address _v2Address) external onlyOwner {
        v1Address = _v1Address;
        v2Address = _v2Address;

        v1Contract = IERC721Draft(v1Address);
        v2Contract = IERC721(v2Address);
    }

    function _initialized() internal view returns (bool) {
        return v1Address != address(0) && v2Address != address(0);
    }
}

File 2 of 8 : IERC721.sol
// SPDX-License-Identifier: MIT

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`, 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 be 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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

File 3 of 8 : ERC721Holder.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721Receiver.sol";

/**
 * @dev Implementation of the {IERC721Receiver} interface.
 *
 * Accepts all token transfers.
 * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.
 */
contract ERC721Holder is IERC721Receiver {
    /**
     * @dev See {IERC721Receiver-onERC721Received}.
     *
     * Always returns `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address,
        address,
        uint256,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC721Received.selector;
    }
}

File 4 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 8 : IERC721Draft.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

/* ERC721 Draft Specification, December 2017: https://github.com/ethereum/eips/issues/721 */
interface IERC721Draft {
    // Required Functions
    function implementsERC721() external pure returns (bool);
    function totalSupply() external view returns (uint256);
    function balanceOf(address _owner) external view returns (uint256);
    function ownerOf(uint256 _tokenId) external view returns (address);
    function transfer(address _to, uint _tokenId) external;
    function approve(address _to, uint256 _tokenId) external;
    function transferFrom(address _from, address _to, uint256 _tokenId) external;

    // Optional Functions
    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function tokenOfOwnerByIndex(address _owner, uint256 _index) external view returns (uint256);
    // function tokenMetadata(uint256 _tokenId) public view returns (string infoUrl);

    // Required Events
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
}

File 6 of 8 : IERC165.sol
// SPDX-License-Identifier: MIT

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 7 of 8 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 8 of 8 : Context.sol
// SPDX-License-Identifier: MIT

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

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":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","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":"_v1Address","type":"address"},{"internalType":"address","name":"_v2Address","type":"address"}],"name":"setContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"v1Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"v1ToV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"v2Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"v2ToV1","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600180546001600160a01b031990811690915560028054909116905534801561002c57600080fd5b506100363361003b565b61008b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109b68061009a6000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c80638da5cb5b116100665780638da5cb5b1461011c578063b22891401461012d578063c48482d714610140578063d8952a4914610153578063f2fde38b1461016657600080fd5b8063150b7a02146100985780634f432812146100d4578063715018a6146100ff57806376f0c32514610109575b600080fd5b6100b66100a63660046107e5565b630a85bd0160e11b949350505050565b6040516001600160e01b031990911681526020015b60405180910390f35b6002546100e7906001600160a01b031681565b6040516001600160a01b0390911681526020016100cb565b610107610179565b005b6101076101173660046108be565b6101b8565b6000546001600160a01b03166100e7565b61010761013b3660046108be565b6103e3565b6001546100e7906001600160a01b031681565b6101076101613660046107ad565b6105e6565b61010761017436600461076e565b610657565b6000546001600160a01b031633146101ac5760405162461bcd60e51b81526004016101a3906108d6565b60405180910390fd5b6101b660006106f2565b565b6101c0610742565b61020c5760405162461bcd60e51b815260206004820152601a60248201527f636f6e747261637420616464726573736573206e6f742073657400000000000060448201526064016101a3565b33600480546040516331a9108f60e11b81529182018490526001600160a01b03928316921690636352211e9060240160206040518083038186803b15801561025357600080fd5b505afa158015610267573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061028b9190610791565b6001600160a01b0316146102e15760405162461bcd60e51b815260206004820152601f60248201527f6f6e6c792074686520746f6b656e206f776e65722063616e206272696467650060448201526064016101a3565b611c528111156103035760405162461bcd60e51b81526004016101a39061090b565b6004546001600160a01b03166342842e0e336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101849052606401600060405180830381600087803b15801561036357600080fd5b505af1158015610377573d6000803e3d6000fd5b505060035460405163a9059cbb60e01b8152336004820152602481018590526001600160a01b03909116925063a9059cbb91506044015b600060405180830381600087803b1580156103c857600080fd5b505af11580156103dc573d6000803e3d6000fd5b5050505050565b6103eb610742565b6104375760405162461bcd60e51b815260206004820152601a60248201527f636f6e747261637420616464726573736573206e6f742073657400000000000060448201526064016101a3565b336003546040516331a9108f60e11b8152600481018490526001600160a01b039283169290911690636352211e9060240160206040518083038186803b15801561048057600080fd5b505afa158015610494573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104b89190610791565b6001600160a01b03161461050e5760405162461bcd60e51b815260206004820152601f60248201527f6f6e6c792074686520746f6b656e206f776e65722063616e206272696467650060448201526064016101a3565b611c528111156105305760405162461bcd60e51b81526004016101a39061090b565b6003546001600160a01b03166323b872dd336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101849052606401600060405180830381600087803b15801561059057600080fd5b505af11580156105a4573d6000803e3d6000fd5b505060048054604051632142170760e11b81523092810192909252336024830152604482018590526001600160a01b031692506342842e0e91506064016103ae565b6000546001600160a01b031633146106105760405162461bcd60e51b81526004016101a3906108d6565b600180546001600160a01b039384166001600160a01b0319918216811790925560028054939094169281168317909355600380548416909117905560048054909216179055565b6000546001600160a01b031633146106815760405162461bcd60e51b81526004016101a3906108d6565b6001600160a01b0381166106e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016101a3565b6106ef816106f2565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001546000906001600160a01b03161580159061076957506002546001600160a01b031615155b905090565b60006020828403121561077f578081fd5b813561078a8161096b565b9392505050565b6000602082840312156107a2578081fd5b815161078a8161096b565b600080604083850312156107bf578081fd5b82356107ca8161096b565b915060208301356107da8161096b565b809150509250929050565b600080600080608085870312156107fa578182fd5b84356108058161096b565b935060208501356108158161096b565b925060408501359150606085013567ffffffffffffffff80821115610838578283fd5b818701915087601f83011261084b578283fd5b81358181111561085d5761085d610955565b604051601f8201601f19908116603f0116810190838211818310171561088557610885610955565b816040528281528a602084870101111561089d578586fd5b82602086016020830137918201602001949094529598949750929550505050565b6000602082840312156108cf578081fd5b5035919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602a908201527f6f6e6c7920746f6b656e732077697468206964203c3d20373235302063616e20604082015269189948189c9a5919d95960b21b606082015260800190565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146106ef57600080fdfea2646970667358221220b5d6ce122230452d8240f5099bdfb8538e7a008c4204818d242d2f4b6a290c3664736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100935760003560e01c80638da5cb5b116100665780638da5cb5b1461011c578063b22891401461012d578063c48482d714610140578063d8952a4914610153578063f2fde38b1461016657600080fd5b8063150b7a02146100985780634f432812146100d4578063715018a6146100ff57806376f0c32514610109575b600080fd5b6100b66100a63660046107e5565b630a85bd0160e11b949350505050565b6040516001600160e01b031990911681526020015b60405180910390f35b6002546100e7906001600160a01b031681565b6040516001600160a01b0390911681526020016100cb565b610107610179565b005b6101076101173660046108be565b6101b8565b6000546001600160a01b03166100e7565b61010761013b3660046108be565b6103e3565b6001546100e7906001600160a01b031681565b6101076101613660046107ad565b6105e6565b61010761017436600461076e565b610657565b6000546001600160a01b031633146101ac5760405162461bcd60e51b81526004016101a3906108d6565b60405180910390fd5b6101b660006106f2565b565b6101c0610742565b61020c5760405162461bcd60e51b815260206004820152601a60248201527f636f6e747261637420616464726573736573206e6f742073657400000000000060448201526064016101a3565b33600480546040516331a9108f60e11b81529182018490526001600160a01b03928316921690636352211e9060240160206040518083038186803b15801561025357600080fd5b505afa158015610267573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061028b9190610791565b6001600160a01b0316146102e15760405162461bcd60e51b815260206004820152601f60248201527f6f6e6c792074686520746f6b656e206f776e65722063616e206272696467650060448201526064016101a3565b611c528111156103035760405162461bcd60e51b81526004016101a39061090b565b6004546001600160a01b03166342842e0e336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101849052606401600060405180830381600087803b15801561036357600080fd5b505af1158015610377573d6000803e3d6000fd5b505060035460405163a9059cbb60e01b8152336004820152602481018590526001600160a01b03909116925063a9059cbb91506044015b600060405180830381600087803b1580156103c857600080fd5b505af11580156103dc573d6000803e3d6000fd5b5050505050565b6103eb610742565b6104375760405162461bcd60e51b815260206004820152601a60248201527f636f6e747261637420616464726573736573206e6f742073657400000000000060448201526064016101a3565b336003546040516331a9108f60e11b8152600481018490526001600160a01b039283169290911690636352211e9060240160206040518083038186803b15801561048057600080fd5b505afa158015610494573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104b89190610791565b6001600160a01b03161461050e5760405162461bcd60e51b815260206004820152601f60248201527f6f6e6c792074686520746f6b656e206f776e65722063616e206272696467650060448201526064016101a3565b611c528111156105305760405162461bcd60e51b81526004016101a39061090b565b6003546001600160a01b03166323b872dd336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101849052606401600060405180830381600087803b15801561059057600080fd5b505af11580156105a4573d6000803e3d6000fd5b505060048054604051632142170760e11b81523092810192909252336024830152604482018590526001600160a01b031692506342842e0e91506064016103ae565b6000546001600160a01b031633146106105760405162461bcd60e51b81526004016101a3906108d6565b600180546001600160a01b039384166001600160a01b0319918216811790925560028054939094169281168317909355600380548416909117905560048054909216179055565b6000546001600160a01b031633146106815760405162461bcd60e51b81526004016101a3906108d6565b6001600160a01b0381166106e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016101a3565b6106ef816106f2565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001546000906001600160a01b03161580159061076957506002546001600160a01b031615155b905090565b60006020828403121561077f578081fd5b813561078a8161096b565b9392505050565b6000602082840312156107a2578081fd5b815161078a8161096b565b600080604083850312156107bf578081fd5b82356107ca8161096b565b915060208301356107da8161096b565b809150509250929050565b600080600080608085870312156107fa578182fd5b84356108058161096b565b935060208501356108158161096b565b925060408501359150606085013567ffffffffffffffff80821115610838578283fd5b818701915087601f83011261084b578283fd5b81358181111561085d5761085d610955565b604051601f8201601f19908116603f0116810190838211818310171561088557610885610955565b816040528281528a602084870101111561089d578586fd5b82602086016020830137918201602001949094529598949750929550505050565b6000602082840312156108cf578081fd5b5035919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602a908201527f6f6e6c7920746f6b656e732077697468206964203c3d20373235302063616e20604082015269189948189c9a5919d95960b21b606082015260800190565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146106ef57600080fdfea2646970667358221220b5d6ce122230452d8240f5099bdfb8538e7a008c4204818d242d2f4b6a290c3664736f6c63430008040033

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.