Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 923 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint | 16066923 | 828 days ago | IN | 0 ETH | 0.00054915 | ||||
Mint | 16066923 | 828 days ago | IN | 0 ETH | 0.00054915 | ||||
Mint | 16066923 | 828 days ago | IN | 0 ETH | 0.00054915 | ||||
Mint | 16066923 | 828 days ago | IN | 0 ETH | 0.00054915 | ||||
Mint | 16066923 | 828 days ago | IN | 0 ETH | 0.00031399 | ||||
Mint | 16066923 | 828 days ago | IN | 0 ETH | 0.00054915 | ||||
Mint | 16066923 | 828 days ago | IN | 0 ETH | 0.00054915 | ||||
Mint | 16066923 | 828 days ago | IN | 0 ETH | 0.00054915 | ||||
Mint | 16066914 | 828 days ago | IN | 0 ETH | 0.00061487 | ||||
Set WL Mint | 16065197 | 828 days ago | IN | 0 ETH | 0.00129575 | ||||
Set WL Mint | 16065151 | 828 days ago | IN | 0 ETH | 0.00129575 | ||||
Set Whitelist B | 16064917 | 828 days ago | IN | 0 ETH | 0.00025239 | ||||
Set Whitelist B | 16064873 | 828 days ago | IN | 0 ETH | 0.00248115 | ||||
Set Whitelist B | 16064864 | 828 days ago | IN | 0 ETH | 0.00856352 | ||||
Set Whitelist B | 16064767 | 828 days ago | IN | 0 ETH | 0.0203219 | ||||
Set Whitelist B | 16064702 | 828 days ago | IN | 0 ETH | 0.00553937 | ||||
Set Whitelist B | 16064691 | 828 days ago | IN | 0 ETH | 0.00664036 | ||||
Set Whitelist B | 16064674 | 828 days ago | IN | 0 ETH | 0.00305605 | ||||
Set Whitelist B | 16064598 | 828 days ago | IN | 0 ETH | 0.02201725 | ||||
Set Whitelist B | 16064598 | 828 days ago | IN | 0 ETH | 0.00027299 | ||||
Mint | 16064588 | 828 days ago | IN | 0 ETH | 0.00132215 | ||||
Mint | 16064585 | 828 days ago | IN | 0 ETH | 0.0010266 | ||||
Mint | 16064582 | 828 days ago | IN | 0 ETH | 0.00132652 | ||||
Mint | 16064580 | 828 days ago | IN | 0 ETH | 0.00128765 | ||||
Mint | 16064579 | 828 days ago | IN | 0 ETH | 0.00105975 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
||||
---|---|---|---|---|---|---|---|
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH | |||||
16066923 | 828 days ago | 0 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MinterWhitelist
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; interface IERC721 { function mint(address to, uint256 quantity) external; function max() external view returns (uint256); function totalSupply() external view returns (uint256); } contract MinterWhitelist is Ownable { IERC721 public erc721; mapping(address => uint256) public whitelistA; mapping(address => bool) public whitelistB; uint256 public whitelistSize; uint256 public mintedA; uint256 public mintedB; uint256 public mintQuantityB; bool public publicMint; bool public wlMint; constructor(IERC721 _erc721) public { erc721 = _erc721; mintQuantityB = 1; } function viewAllocationB() public view returns (uint256) { return erc721.max() - erc721.totalSupply() - whitelistSize; } function mint() public { require(wlMint, "mint not started"); require( whitelistA[msg.sender] > 0 || whitelistB[msg.sender], "Address not whitelisted" ); if (whitelistA[msg.sender] > 0) { erc721.mint(msg.sender, whitelistA[msg.sender]); mintedA = mintedA + whitelistA[msg.sender]; whitelistSize = whitelistSize - whitelistA[msg.sender]; whitelistA[msg.sender] = 0; return; } require(viewAllocationB() > 0, "Only reserved mints left"); uint256 quantity = mintQuantityB; if (viewAllocationB() - mintedB < mintQuantityB) { quantity = viewAllocationB() - mintedB; } erc721.mint(msg.sender, quantity); whitelistB[msg.sender] = false; mintedB = mintedB + quantity; } function setERC721(IERC721 _erc721) public onlyOwner { erc721 = _erc721; } function setMintQuantityB(uint256 _quantity) public onlyOwner { mintQuantityB = _quantity; } function setWLMint(bool _isTrue) public onlyOwner { wlMint = _isTrue; } function setWhitelistA( address[] memory _whitelist, uint256[] memory _quantities ) public onlyOwner { for (uint256 i = 0; i < _whitelist.length; i++) { whitelistSize = whitelistSize + _quantities[i] - whitelistA[_whitelist[i]]; whitelistA[_whitelist[i]] = _quantities[i]; } } function revokeWhitelistA(address[] memory _whitelist) public onlyOwner { for (uint256 i = 0; i < _whitelist.length; i++) { whitelistSize = whitelistSize - whitelistA[_whitelist[i]]; whitelistA[_whitelist[i]] = 0; } } function setWhitelistB(address[] memory _whitelist) public onlyOwner { for (uint256 i = 0; i < _whitelist.length; i++) { whitelistB[_whitelist[i]] = true; } } function revokeWhitelistB(address[] memory _whitelist) public onlyOwner { for (uint256 i = 0; i < _whitelist.length; i++) { whitelistB[_whitelist[i]] = false; } } }
// 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 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; } }
{ "evmVersion": "london", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 30000 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IERC721","name":"_erc721","type":"address"}],"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"},{"inputs":[],"name":"erc721","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintQuantityB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedB","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":"publicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelist","type":"address[]"}],"name":"revokeWhitelistA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelist","type":"address[]"}],"name":"revokeWhitelistB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC721","name":"_erc721","type":"address"}],"name":"setERC721","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setMintQuantityB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isTrue","type":"bool"}],"name":"setWLMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelist","type":"address[]"},{"internalType":"uint256[]","name":"_quantities","type":"uint256[]"}],"name":"setWhitelistA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelist","type":"address[]"}],"name":"setWhitelistB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"viewAllocationB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistB","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5060405161124738038061124783398101604081905261002f916100b0565b61003833610060565b600180546001600160a01b0319166001600160a01b03929092169190911781556007556100e0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100c257600080fd5b81516001600160a01b03811681146100d957600080fd5b9392505050565b611158806100ef6000396000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c806357fa1607116100d8578063a61000b91161008c578063f2fde38b11610066578063f2fde38b146102fd578063f60abe0014610310578063fba237f91461032357600080fd5b8063a61000b9146102b1578063bca6ce64146102d4578063f0a43714146102f457600080fd5b80637f9fa411116100bd5780637f9fa4111461024d5780638da5cb5b1461025f578063a0af246b1461029e57600080fd5b806357fa16071461023c578063715018a61461024557600080fd5b80631c51e1591161012f57806326092b831161011457806326092b8314610203578063310c2a8c146102205780633b9507bd1461023357600080fd5b80631c51e159146101f257806325371489146101fb57600080fd5b80631249c58b116101605780631249c58b146101a4578063129e77be146101ac578063198e3f7f146101df57600080fd5b8063094144a51461017c5780630ebd55ad14610191575b600080fd5b61018f61018a366004610dd7565b610336565b005b61018f61019f366004610f11565b610385565b61018f610424565b6101cc6101ba366004610dd7565b60026020526000908152604090205481565b6040519081526020015b60405180910390f35b61018f6101ed366004610f4e565b6107ab565b6101cc60055481565b6101cc6108dc565b6008546102109060ff1681565b60405190151581526020016101d6565b61018f61022e366004611009565b610a1c565b6101cc60065481565b6101cc60075481565b61018f610a29565b60085461021090610100900460ff1681565b60005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101d6565b61018f6102ac366004610f11565b610a3d565b6102106102bf366004610dd7565b60036020526000908152604090205460ff1681565b6001546102799073ffffffffffffffffffffffffffffffffffffffff1681565b6101cc60045481565b61018f61030b366004610dd7565b610ad8565b61018f61031e366004611022565b610b8f565b61018f610331366004610f11565b610bce565b61033e610cbf565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61038d610cbf565b60005b8151811015610420576000600360008484815181106103b1576103b1611044565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580610418816110a2565b915050610390565b5050565b600854610100900460ff1661049a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6d696e74206e6f7420737461727465640000000000000000000000000000000060448201526064015b60405180910390fd5b336000908152600260205260409020541515806104c657503360009081526003602052604090205460ff165b61052c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610491565b336000908152600260205260409020541561062f5760015433600081815260026020526040908190205490517f40c10f190000000000000000000000000000000000000000000000000000000081526004810192909252602482015273ffffffffffffffffffffffffffffffffffffffff909116906340c10f1990604401600060405180830381600087803b1580156105c457600080fd5b505af11580156105d8573d6000803e3d6000fd5b5050336000908152600260205260409020546005546105fa93509091506110da565b6005553360009081526002602052604090205460045461061a91906110f2565b60045533600090815260026020526040812055565b60006106396108dc565b116106a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c79207265736572766564206d696e7473206c65667400000000000000006044820152606401610491565b60075460065481906106b06108dc565b6106ba91906110f2565b10156106d8576006546106cb6108dc565b6106d591906110f2565b90505b6001546040517f40c10f190000000000000000000000000000000000000000000000000000000081523360048201526024810183905273ffffffffffffffffffffffffffffffffffffffff909116906340c10f1990604401600060405180830381600087803b15801561074a57600080fd5b505af115801561075e573d6000803e3d6000fd5b505033600090815260036020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905550506006546107a59082906110da565b60065550565b6107b3610cbf565b60005b82518110156108d757600260008483815181106107d5576107d5611044565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482828151811061082a5761082a611044565b602002602001015160045461083f91906110da565b61084991906110f2565b600455815182908290811061086057610860611044565b60200260200101516002600085848151811061087e5761087e611044565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806108cf906110a2565b9150506107b6565b505050565b6000600454600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561094e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109729190611109565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a039190611109565b610a0d91906110f2565b610a1791906110f2565b905090565b610a24610cbf565b600755565b610a31610cbf565b610a3b6000610d40565b565b610a45610cbf565b60005b815181101561042057600160036000848481518110610a6957610a69611044565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580610ad0816110a2565b915050610a48565b610ae0610cbf565b73ffffffffffffffffffffffffffffffffffffffff8116610b83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610491565b610b8c81610d40565b50565b610b97610cbf565b60088054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b610bd6610cbf565b60005b81518110156104205760026000838381518110610bf857610bf8611044565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600454610c4891906110f2565b600481905550600060026000848481518110610c6657610c66611044565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610cb7906110a2565b915050610bd9565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610491565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff81168114610b8c57600080fd5b600060208284031215610de957600080fd5b8135610df481610db5565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715610e7157610e71610dfb565b604052919050565b600067ffffffffffffffff821115610e9357610e93610dfb565b5060051b60200190565b600082601f830112610eae57600080fd5b81356020610ec3610ebe83610e79565b610e2a565b82815260059290921b84018101918181019086841115610ee257600080fd5b8286015b84811015610f06578035610ef981610db5565b8352918301918301610ee6565b509695505050505050565b600060208284031215610f2357600080fd5b813567ffffffffffffffff811115610f3a57600080fd5b610f4684828501610e9d565b949350505050565b60008060408385031215610f6157600080fd5b823567ffffffffffffffff80821115610f7957600080fd5b610f8586838701610e9d565b9350602091508185013581811115610f9c57600080fd5b85019050601f81018613610faf57600080fd5b8035610fbd610ebe82610e79565b81815260059190911b82018301908381019088831115610fdc57600080fd5b928401925b82841015610ffa57833582529284019290840190610fe1565b80955050505050509250929050565b60006020828403121561101b57600080fd5b5035919050565b60006020828403121561103457600080fd5b81358015158114610df457600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036110d3576110d3611073565b5060010190565b600082198211156110ed576110ed611073565b500190565b60008282101561110457611104611073565b500390565b60006020828403121561111b57600080fd5b505191905056fea26469706673582212206a7eaecf84a098d788291544e9507708e3bcf973aaa4cbaabe8c2bbd8d1ea1cf64736f6c634300080d0033000000000000000000000000808f83264742a1ff9778b1b0e45052799e244475
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101775760003560e01c806357fa1607116100d8578063a61000b91161008c578063f2fde38b11610066578063f2fde38b146102fd578063f60abe0014610310578063fba237f91461032357600080fd5b8063a61000b9146102b1578063bca6ce64146102d4578063f0a43714146102f457600080fd5b80637f9fa411116100bd5780637f9fa4111461024d5780638da5cb5b1461025f578063a0af246b1461029e57600080fd5b806357fa16071461023c578063715018a61461024557600080fd5b80631c51e1591161012f57806326092b831161011457806326092b8314610203578063310c2a8c146102205780633b9507bd1461023357600080fd5b80631c51e159146101f257806325371489146101fb57600080fd5b80631249c58b116101605780631249c58b146101a4578063129e77be146101ac578063198e3f7f146101df57600080fd5b8063094144a51461017c5780630ebd55ad14610191575b600080fd5b61018f61018a366004610dd7565b610336565b005b61018f61019f366004610f11565b610385565b61018f610424565b6101cc6101ba366004610dd7565b60026020526000908152604090205481565b6040519081526020015b60405180910390f35b61018f6101ed366004610f4e565b6107ab565b6101cc60055481565b6101cc6108dc565b6008546102109060ff1681565b60405190151581526020016101d6565b61018f61022e366004611009565b610a1c565b6101cc60065481565b6101cc60075481565b61018f610a29565b60085461021090610100900460ff1681565b60005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101d6565b61018f6102ac366004610f11565b610a3d565b6102106102bf366004610dd7565b60036020526000908152604090205460ff1681565b6001546102799073ffffffffffffffffffffffffffffffffffffffff1681565b6101cc60045481565b61018f61030b366004610dd7565b610ad8565b61018f61031e366004611022565b610b8f565b61018f610331366004610f11565b610bce565b61033e610cbf565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61038d610cbf565b60005b8151811015610420576000600360008484815181106103b1576103b1611044565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580610418816110a2565b915050610390565b5050565b600854610100900460ff1661049a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6d696e74206e6f7420737461727465640000000000000000000000000000000060448201526064015b60405180910390fd5b336000908152600260205260409020541515806104c657503360009081526003602052604090205460ff165b61052c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610491565b336000908152600260205260409020541561062f5760015433600081815260026020526040908190205490517f40c10f190000000000000000000000000000000000000000000000000000000081526004810192909252602482015273ffffffffffffffffffffffffffffffffffffffff909116906340c10f1990604401600060405180830381600087803b1580156105c457600080fd5b505af11580156105d8573d6000803e3d6000fd5b5050336000908152600260205260409020546005546105fa93509091506110da565b6005553360009081526002602052604090205460045461061a91906110f2565b60045533600090815260026020526040812055565b60006106396108dc565b116106a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4f6e6c79207265736572766564206d696e7473206c65667400000000000000006044820152606401610491565b60075460065481906106b06108dc565b6106ba91906110f2565b10156106d8576006546106cb6108dc565b6106d591906110f2565b90505b6001546040517f40c10f190000000000000000000000000000000000000000000000000000000081523360048201526024810183905273ffffffffffffffffffffffffffffffffffffffff909116906340c10f1990604401600060405180830381600087803b15801561074a57600080fd5b505af115801561075e573d6000803e3d6000fd5b505033600090815260036020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905550506006546107a59082906110da565b60065550565b6107b3610cbf565b60005b82518110156108d757600260008483815181106107d5576107d5611044565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482828151811061082a5761082a611044565b602002602001015160045461083f91906110da565b61084991906110f2565b600455815182908290811061086057610860611044565b60200260200101516002600085848151811061087e5761087e611044565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806108cf906110a2565b9150506107b6565b505050565b6000600454600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561094e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109729190611109565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a039190611109565b610a0d91906110f2565b610a1791906110f2565b905090565b610a24610cbf565b600755565b610a31610cbf565b610a3b6000610d40565b565b610a45610cbf565b60005b815181101561042057600160036000848481518110610a6957610a69611044565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580610ad0816110a2565b915050610a48565b610ae0610cbf565b73ffffffffffffffffffffffffffffffffffffffff8116610b83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610491565b610b8c81610d40565b50565b610b97610cbf565b60088054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b610bd6610cbf565b60005b81518110156104205760026000838381518110610bf857610bf8611044565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600454610c4891906110f2565b600481905550600060026000848481518110610c6657610c66611044565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610cb7906110a2565b915050610bd9565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610491565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff81168114610b8c57600080fd5b600060208284031215610de957600080fd5b8135610df481610db5565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715610e7157610e71610dfb565b604052919050565b600067ffffffffffffffff821115610e9357610e93610dfb565b5060051b60200190565b600082601f830112610eae57600080fd5b81356020610ec3610ebe83610e79565b610e2a565b82815260059290921b84018101918181019086841115610ee257600080fd5b8286015b84811015610f06578035610ef981610db5565b8352918301918301610ee6565b509695505050505050565b600060208284031215610f2357600080fd5b813567ffffffffffffffff811115610f3a57600080fd5b610f4684828501610e9d565b949350505050565b60008060408385031215610f6157600080fd5b823567ffffffffffffffff80821115610f7957600080fd5b610f8586838701610e9d565b9350602091508185013581811115610f9c57600080fd5b85019050601f81018613610faf57600080fd5b8035610fbd610ebe82610e79565b81815260059190911b82018301908381019088831115610fdc57600080fd5b928401925b82841015610ffa57833582529284019290840190610fe1565b80955050505050509250929050565b60006020828403121561101b57600080fd5b5035919050565b60006020828403121561103457600080fd5b81358015158114610df457600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036110d3576110d3611073565b5060010190565b600082198211156110ed576110ed611073565b500190565b60008282101561110457611104611073565b500390565b60006020828403121561111b57600080fd5b505191905056fea26469706673582212206a7eaecf84a098d788291544e9507708e3bcf973aaa4cbaabe8c2bbd8d1ea1cf64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000808f83264742a1ff9778b1b0e45052799e244475
-----Decoded View---------------
Arg [0] : _erc721 (address): 0x808F83264742A1FF9778b1B0E45052799e244475
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000808f83264742a1ff9778b1b0e45052799e244475
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.