ETH Price: $2,545.20 (-9.74%)

Contract

0x07F0B45EbCd87d60faEDf9BD4750ffd580cf2915
Sponsored:   Join Lightchain Protocol AI Presale Today Before Tokens Sell Out. Explore Now!  

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
Age
From
To
Transfer From215242512024-12-31 18:30:3555 days ago1735669835IN
0x07F0B45E...580cf2915
0 ETH0.0005129410.48873682
Transfer From215242492024-12-31 18:30:1155 days ago1735669811IN
0x07F0B45E...580cf2915
0 ETH0.0005176910.58593152
Transfer From215242472024-12-31 18:29:4755 days ago1735669787IN
0x07F0B45E...580cf2915
0 ETH0.000748210.80934691
Transfer From215242462024-12-31 18:29:3555 days ago1735669775IN
0x07F0B45E...580cf2915
0 ETH0.0007593210.73287316
Transfer From215242452024-12-31 18:29:2355 days ago1735669763IN
0x07F0B45E...580cf2915
0 ETH0.0007962210.88841769
Transfer From215242432024-12-31 18:28:5955 days ago1735669739IN
0x07F0B45E...580cf2915
0 ETH0.0010112410.5538558
Transfer From215242402024-12-31 18:28:2355 days ago1735669703IN
0x07F0B45E...580cf2915
0 ETH0.0008692310.83011233
Transfer From215242392024-12-31 18:28:1155 days ago1735669691IN
0x07F0B45E...580cf2915
0 ETH0.0008989610.87824406
Transfer From215242372024-12-31 18:27:4755 days ago1735669667IN
0x07F0B45E...580cf2915
0 ETH0.0009190810.81046486
Transfer From215242342024-12-31 18:27:1155 days ago1735669631IN
0x07F0B45E...580cf2915
0 ETH0.0011272610.7876265
Set Approval For...210634762024-10-28 10:16:23119 days ago1730110583IN
0x07F0B45E...580cf2915
0 ETH0.000411778.93177836
Set Approval For...179035032023-08-13 4:18:35561 days ago1691900315IN
0x07F0B45E...580cf2915
0 ETH0.0005292811.45982177
Set Approval For...178498872023-08-05 16:13:23569 days ago1691252003IN
0x07F0B45E...580cf2915
0 ETH0.0004907118.73665173
Set Approval For...174748762023-06-14 1:17:59621 days ago1686705479IN
0x07F0B45E...580cf2915
0 ETH0.0007124115.45293741
Set Approval For...169441082023-03-31 2:06:59696 days ago1680228419IN
0x07F0B45E...580cf2915
0 ETH0.0006623227.38025051
Set Approval For...161404792022-12-08 14:06:59809 days ago1670508419IN
0x07F0B45E...580cf2915
0 ETH0.0004205417.38517926
Set Approval For...158913582022-11-03 18:44:47844 days ago1667501087IN
0x07F0B45E...580cf2915
0 ETH0.0004426318.29844323
Set Approval For...158304292022-10-26 6:22:59852 days ago1666765379IN
0x07F0B45E...580cf2915
0 ETH0.0004822710.46113887
Safe Transfer Fr...158110262022-10-23 13:11:47855 days ago1666530707IN
0x07F0B45E...580cf2915
0 ETH0.0008748212.67912613
Set Approval For...157368032022-10-13 4:27:23865 days ago1665635243IN
0x07F0B45E...580cf2915
0 ETH0.0003140212.98152039
Set Approval For...156129352022-09-25 21:00:23883 days ago1664139623IN
0x07F0B45E...580cf2915
0 ETH0.0005660312.27788214
Set Approval For...155344452022-09-14 18:25:53894 days ago1663179953IN
0x07F0B45E...580cf2915
0 ETH0.0015098932.75117081
Set Approval For...155266512022-09-13 11:22:41895 days ago1663068161IN
0x07F0B45E...580cf2915
0 ETH0.0004712610.22215974
Set Approval For...154882572022-09-07 4:23:00901 days ago1662524580IN
0x07F0B45E...580cf2915
0 ETH0.0010290122.32040194
Safe Transfer Fr...154818672022-09-06 4:09:12902 days ago1662437352IN
0x07F0B45E...580cf2915
0 ETH0.0006522812.5717104
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:
Wizard

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 11 : Wizard.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "ERC721A.sol";
import "Ownable.sol";
contract Wizard is ERC721A, Ownable {
mapping(address => bool) public isMinter;
constructor(string memory name, string memory symbol) ERC721A(name, symbol) {}
function _baseURI() internal pure override returns (string memory) {
return "https://www.lootbox.io/api/wizard/";
}
function safeMint(address to, uint256 quantity) public {
require(isMinter[_msgSender()], "Caller is not minter.");
_safeMint(to, quantity);
}
function setMinter(address minter, bool status) public onlyOwner {
isMinter[minter] = status;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 11 : ERC721A.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import "IERC721.sol";
import "IERC721Receiver.sol";
import "IERC721Metadata.sol";
import "Address.sol";
import "Context.sol";
import "Strings.sol";
import "ERC165.sol";
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 11 : IERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "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);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 11 : IERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 11 : IERC721Receiver.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)
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);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 11 : IERC721Metadata.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 11 : Address.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 11 : Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 11 : Strings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 10 of 11 : ERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 11 of 11 : Ownable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "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.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"evmVersion": "istanbul",
"optimizer": {
"enabled": true,
"runs": 200
},
"libraries": {
"Wizard.sol": {}
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620017e0380380620017e0833981016040819052620000349162000242565b8151829082906200004d906002906020850190620000cf565b50805162000063906003906020840190620000cf565b5050600080555062000075336200007d565b5050620002e8565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000dd90620002ac565b90600052602060002090601f0160209004810192826200010157600085556200014c565b82601f106200011c57805160ff19168380011785556200014c565b828001600101855582156200014c579182015b828111156200014c5782518255916020019190600101906200012f565b506200015a9291506200015e565b5090565b5b808211156200015a57600081556001016200015f565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200019d57600080fd5b81516001600160401b0380821115620001ba57620001ba62000175565b604051601f8301601f19908116603f01168101908282118183101715620001e557620001e562000175565b816040528381526020925086838588010111156200020257600080fd5b600091505b8382101562000226578582018301518183018401529082019062000207565b83821115620002385760008385830101525b9695505050505050565b600080604083850312156200025657600080fd5b82516001600160401b03808211156200026e57600080fd5b6200027c868387016200018b565b935060208501519150808211156200029357600080fd5b50620002a2858286016200018b565b9150509250929050565b600181811c90821680620002c157607f821691505b602082108103620002e257634e487b7160e01b600052602260045260246000fd5b50919050565b6114e880620002f86000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063b88d4fde11610071578063b88d4fde1461027a578063c87b56dd1461028d578063cf456ae7146102a0578063e985e9c5146102b3578063f2fde38b146102ef57600080fd5b80638da5cb5b1461021857806395d89b4114610229578063a144819414610231578063a22cb46514610244578063aa271e1a1461025757600080fd5b806323b872dd116100f457806323b872dd146101c457806342842e0e146101d75780636352211e146101ea57806370a08231146101fd578063715018a61461021057600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806318160ddd146101ae575b600080fd5b61014461013f366004611047565b610302565b60405190151581526020015b60405180910390f35b610161610354565b60405161015091906110bc565b61018161017c3660046110cf565b6103e6565b6040516001600160a01b039091168152602001610150565b6101ac6101a7366004611104565b61042a565b005b600154600054035b604051908152602001610150565b6101ac6101d236600461112e565b6104b7565b6101ac6101e536600461112e565b6104c2565b6101816101f83660046110cf565b6104dd565b6101b661020b36600461116a565b6104ef565b6101ac61053e565b6008546001600160a01b0316610181565b61016161057d565b6101ac61023f366004611104565b61058c565b6101ac610252366004611185565b6105f1565b61014461026536600461116a565b60096020526000908152604090205460ff1681565b6101ac6102883660046111d7565b610686565b61016161029b3660046110cf565b6106d7565b6101ac6102ae366004611185565b61075b565b6101446102c13660046112b3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101ac6102fd36600461116a565b6107b0565b60006001600160e01b031982166380ac58cd60e01b148061033357506001600160e01b03198216635b5e139f60e01b145b8061034e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610363906112e6565b80601f016020809104026020016040519081016040528092919081815260200182805461038f906112e6565b80156103dc5780601f106103b1576101008083540402835291602001916103dc565b820191906000526020600020905b8154815290600101906020018083116103bf57829003601f168201915b5050505050905090565b60006103f18261084b565b61040e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610435826104dd565b9050806001600160a01b0316836001600160a01b0316036104695760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610489575061048781336102c1565b155b156104a7576040516367d9dca160e11b815260040160405180910390fd5b6104b2838383610876565b505050565b6104b28383836108d2565b6104b283838360405180602001604052806000815250610686565b60006104e882610ac2565b5192915050565b60006001600160a01b038216610518576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146105715760405162461bcd60e51b815260040161056890611320565b60405180910390fd5b61057b6000610bde565b565b606060038054610363906112e6565b3360009081526009602052604090205460ff166105e35760405162461bcd60e51b815260206004820152601560248201527421b0b63632b91034b9903737ba1036b4b73a32b91760591b6044820152606401610568565b6105ed8282610c30565b5050565b336001600160a01b0383160361061a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6106918484846108d2565b6001600160a01b0383163b151580156106b357506106b184848484610c4a565b155b156106d1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606106e28261084b565b6106ff57604051630a14c4b560e41b815260040160405180910390fd5b6000610709610d36565b905080516000036107295760405180602001604052806000815250610754565b8061073384610d56565b604051602001610744929190611355565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146107855760405162461bcd60e51b815260040161056890611320565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6008546001600160a01b031633146107da5760405162461bcd60e51b815260040161056890611320565b6001600160a01b03811661083f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610568565b61084881610bde565b50565b600080548210801561034e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006108dd82610ac2565b9050836001600160a01b031681600001516001600160a01b0316146109145760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610932575061093285336102c1565b8061094d575033610942846103e6565b6001600160a01b0316145b90508061096d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661099457604051633a954ecd60e21b815260040160405180910390fd5b6109a060008487610876565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610a76576000548214610a76578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015610bc557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610bc35780516001600160a01b031615610b59579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610bbe579392505050565b610b59565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6105ed828260405180602001604052806000815250610e57565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610c7f903390899088908890600401611384565b6020604051808303816000875af1925050508015610cba575060408051601f3d908101601f19168201909252610cb7918101906113c1565b60015b610d18573d808015610ce8576040519150601f19603f3d011682016040523d82523d6000602084013e610ced565b606091505b508051600003610d10576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060405180606001604052806022815260200161149160229139905090565b606081600003610d7d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610da75780610d91816113f4565b9150610da09050600a83611423565b9150610d81565b60008167ffffffffffffffff811115610dc257610dc26111c1565b6040519080825280601f01601f191660200182016040528015610dec576020820181803683370190505b5090505b8415610d2e57610e01600183611437565b9150610e0e600a8661144e565b610e19906030611462565b60f81b818381518110610e2e57610e2e61147a565b60200101906001600160f81b031916908160001a905350610e50600a86611423565b9450610df0565b6104b283838360016000546001600160a01b038516610e8857604051622e076360e81b815260040160405180910390fd5b83600003610ea95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015610f5b57506001600160a01b0387163b15155b15610fe3575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610fac6000888480600101955088610c4a565b610fc9576040516368d2bf6b60e11b815260040160405180910390fd5b808203610f61578260005414610fde57600080fd5b611028565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203610fe4575b50600055610abb565b6001600160e01b03198116811461084857600080fd5b60006020828403121561105957600080fd5b813561075481611031565b60005b8381101561107f578181015183820152602001611067565b838111156106d15750506000910152565b600081518084526110a8816020860160208601611064565b601f01601f19169290920160200192915050565b6020815260006107546020830184611090565b6000602082840312156110e157600080fd5b5035919050565b80356001600160a01b03811681146110ff57600080fd5b919050565b6000806040838503121561111757600080fd5b611120836110e8565b946020939093013593505050565b60008060006060848603121561114357600080fd5b61114c846110e8565b925061115a602085016110e8565b9150604084013590509250925092565b60006020828403121561117c57600080fd5b610754826110e8565b6000806040838503121561119857600080fd5b6111a1836110e8565b9150602083013580151581146111b657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156111ed57600080fd5b6111f6856110e8565b9350611204602086016110e8565b925060408501359150606085013567ffffffffffffffff8082111561122857600080fd5b818701915087601f83011261123c57600080fd5b81358181111561124e5761124e6111c1565b604051601f8201601f19908116603f01168101908382118183101715611276576112766111c1565b816040528281528a602084870101111561128f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156112c657600080fd5b6112cf836110e8565b91506112dd602084016110e8565b90509250929050565b600181811c908216806112fa57607f821691505b60208210810361131a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008351611367818460208801611064565b83519083019061137b818360208801611064565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906113b790830184611090565b9695505050505050565b6000602082840312156113d357600080fd5b815161075481611031565b634e487b7160e01b600052601160045260246000fd5b600060018201611406576114066113de565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826114325761143261140d565b500490565b600082821015611449576114496113de565b500390565b60008261145d5761145d61140d565b500690565b60008219821115611475576114756113de565b500190565b634e487b7160e01b600052603260045260246000fdfe68747470733a2f2f7777772e6c6f6f74626f782e696f2f6170692f77697a6172642fa2646970667358221220a1f9d7cba826f6998fb7dd04eecbb68195586c83197c4d4fa4901c0349cb63dc64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000657697a6172640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000657495a4152440000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063b88d4fde11610071578063b88d4fde1461027a578063c87b56dd1461028d578063cf456ae7146102a0578063e985e9c5146102b3578063f2fde38b146102ef57600080fd5b80638da5cb5b1461021857806395d89b4114610229578063a144819414610231578063a22cb46514610244578063aa271e1a1461025757600080fd5b806323b872dd116100f457806323b872dd146101c457806342842e0e146101d75780636352211e146101ea57806370a08231146101fd578063715018a61461021057600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806318160ddd146101ae575b600080fd5b61014461013f366004611047565b610302565b60405190151581526020015b60405180910390f35b610161610354565b60405161015091906110bc565b61018161017c3660046110cf565b6103e6565b6040516001600160a01b039091168152602001610150565b6101ac6101a7366004611104565b61042a565b005b600154600054035b604051908152602001610150565b6101ac6101d236600461112e565b6104b7565b6101ac6101e536600461112e565b6104c2565b6101816101f83660046110cf565b6104dd565b6101b661020b36600461116a565b6104ef565b6101ac61053e565b6008546001600160a01b0316610181565b61016161057d565b6101ac61023f366004611104565b61058c565b6101ac610252366004611185565b6105f1565b61014461026536600461116a565b60096020526000908152604090205460ff1681565b6101ac6102883660046111d7565b610686565b61016161029b3660046110cf565b6106d7565b6101ac6102ae366004611185565b61075b565b6101446102c13660046112b3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101ac6102fd36600461116a565b6107b0565b60006001600160e01b031982166380ac58cd60e01b148061033357506001600160e01b03198216635b5e139f60e01b145b8061034e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610363906112e6565b80601f016020809104026020016040519081016040528092919081815260200182805461038f906112e6565b80156103dc5780601f106103b1576101008083540402835291602001916103dc565b820191906000526020600020905b8154815290600101906020018083116103bf57829003601f168201915b5050505050905090565b60006103f18261084b565b61040e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610435826104dd565b9050806001600160a01b0316836001600160a01b0316036104695760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610489575061048781336102c1565b155b156104a7576040516367d9dca160e11b815260040160405180910390fd5b6104b2838383610876565b505050565b6104b28383836108d2565b6104b283838360405180602001604052806000815250610686565b60006104e882610ac2565b5192915050565b60006001600160a01b038216610518576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146105715760405162461bcd60e51b815260040161056890611320565b60405180910390fd5b61057b6000610bde565b565b606060038054610363906112e6565b3360009081526009602052604090205460ff166105e35760405162461bcd60e51b815260206004820152601560248201527421b0b63632b91034b9903737ba1036b4b73a32b91760591b6044820152606401610568565b6105ed8282610c30565b5050565b336001600160a01b0383160361061a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6106918484846108d2565b6001600160a01b0383163b151580156106b357506106b184848484610c4a565b155b156106d1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606106e28261084b565b6106ff57604051630a14c4b560e41b815260040160405180910390fd5b6000610709610d36565b905080516000036107295760405180602001604052806000815250610754565b8061073384610d56565b604051602001610744929190611355565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146107855760405162461bcd60e51b815260040161056890611320565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6008546001600160a01b031633146107da5760405162461bcd60e51b815260040161056890611320565b6001600160a01b03811661083f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610568565b61084881610bde565b50565b600080548210801561034e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006108dd82610ac2565b9050836001600160a01b031681600001516001600160a01b0316146109145760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610932575061093285336102c1565b8061094d575033610942846103e6565b6001600160a01b0316145b90508061096d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661099457604051633a954ecd60e21b815260040160405180910390fd5b6109a060008487610876565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610a76576000548214610a76578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015610bc557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610bc35780516001600160a01b031615610b59579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610bbe579392505050565b610b59565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6105ed828260405180602001604052806000815250610e57565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610c7f903390899088908890600401611384565b6020604051808303816000875af1925050508015610cba575060408051601f3d908101601f19168201909252610cb7918101906113c1565b60015b610d18573d808015610ce8576040519150601f19603f3d011682016040523d82523d6000602084013e610ced565b606091505b508051600003610d10576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060405180606001604052806022815260200161149160229139905090565b606081600003610d7d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610da75780610d91816113f4565b9150610da09050600a83611423565b9150610d81565b60008167ffffffffffffffff811115610dc257610dc26111c1565b6040519080825280601f01601f191660200182016040528015610dec576020820181803683370190505b5090505b8415610d2e57610e01600183611437565b9150610e0e600a8661144e565b610e19906030611462565b60f81b818381518110610e2e57610e2e61147a565b60200101906001600160f81b031916908160001a905350610e50600a86611423565b9450610df0565b6104b283838360016000546001600160a01b038516610e8857604051622e076360e81b815260040160405180910390fd5b83600003610ea95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015610f5b57506001600160a01b0387163b15155b15610fe3575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610fac6000888480600101955088610c4a565b610fc9576040516368d2bf6b60e11b815260040160405180910390fd5b808203610f61578260005414610fde57600080fd5b611028565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203610fe4575b50600055610abb565b6001600160e01b03198116811461084857600080fd5b60006020828403121561105957600080fd5b813561075481611031565b60005b8381101561107f578181015183820152602001611067565b838111156106d15750506000910152565b600081518084526110a8816020860160208601611064565b601f01601f19169290920160200192915050565b6020815260006107546020830184611090565b6000602082840312156110e157600080fd5b5035919050565b80356001600160a01b03811681146110ff57600080fd5b919050565b6000806040838503121561111757600080fd5b611120836110e8565b946020939093013593505050565b60008060006060848603121561114357600080fd5b61114c846110e8565b925061115a602085016110e8565b9150604084013590509250925092565b60006020828403121561117c57600080fd5b610754826110e8565b6000806040838503121561119857600080fd5b6111a1836110e8565b9150602083013580151581146111b657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156111ed57600080fd5b6111f6856110e8565b9350611204602086016110e8565b925060408501359150606085013567ffffffffffffffff8082111561122857600080fd5b818701915087601f83011261123c57600080fd5b81358181111561124e5761124e6111c1565b604051601f8201601f19908116603f01168101908382118183101715611276576112766111c1565b816040528281528a602084870101111561128f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156112c657600080fd5b6112cf836110e8565b91506112dd602084016110e8565b90509250929050565b600181811c908216806112fa57607f821691505b60208210810361131a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008351611367818460208801611064565b83519083019061137b818360208801611064565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906113b790830184611090565b9695505050505050565b6000602082840312156113d357600080fd5b815161075481611031565b634e487b7160e01b600052601160045260246000fd5b600060018201611406576114066113de565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826114325761143261140d565b500490565b600082821015611449576114496113de565b500390565b60008261145d5761145d61140d565b500690565b60008219821115611475576114756113de565b500190565b634e487b7160e01b600052603260045260246000fdfe68747470733a2f2f7777772e6c6f6f74626f782e696f2f6170692f77697a6172642fa2646970667358221220a1f9d7cba826f6998fb7dd04eecbb68195586c83197c4d4fa4901c0349cb63dc64736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000657697a6172640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000657495a4152440000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Wizard
Arg [1] : symbol (string): WIZARD

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 57697a6172640000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 57495a4152440000000000000000000000000000000000000000000000000000


Block Age Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Age Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Age Amount
View All Withdrawals

Transaction Hash Block Age 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.