ETH Price: $3,236.91 (+2.65%)
Gas: 3 Gwei

Contract

0x9b47ADC8242254e744064C2cD945Aabaad05AaF6
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim193734162024-03-06 3:22:11142 days ago1709695331IN
0x9b47ADC8...aad05AaF6
0 ETH0.0569627452.70244076
Claim193731422024-03-06 2:27:11142 days ago1709692031IN
0x9b47ADC8...aad05AaF6
0 ETH0.006199955.79966629
Claim193627442024-03-04 15:38:47143 days ago1709566727IN
0x9b47ADC8...aad05AaF6
0 ETH0.03042883103.61714162
Claim193586212024-03-04 1:49:35144 days ago1709516975IN
0x9b47ADC8...aad05AaF6
0 ETH0.0456360164.00562901
Claim193435172024-03-01 23:09:11146 days ago1709334551IN
0x9b47ADC8...aad05AaF6
0 ETH0.0529662847.08838054
Claim193375792024-03-01 3:15:59147 days ago1709262959IN
0x9b47ADC8...aad05AaF6
0 ETH0.0298428242.88378307
Claim193289122024-02-28 22:09:11148 days ago1709158151IN
0x9b47ADC8...aad05AaF6
0 ETH0.005019853.39654896
Claim193224122024-02-28 0:18:35149 days ago1709079515IN
0x9b47ADC8...aad05AaF6
0 ETH0.0042110744.79393261
Claim193205092024-02-27 17:54:47149 days ago1709056487IN
0x9b47ADC8...aad05AaF6
0 ETH0.0052321247.08957696
Claim193148502024-02-26 22:55:59150 days ago1708988159IN
0x9b47ADC8...aad05AaF6
0 ETH0.0091965734.12459246
Claim192787232024-02-21 21:31:59155 days ago1708551119IN
0x9b47ADC8...aad05AaF6
0 ETH0.0051888655.19477342
Claim192388792024-02-16 7:07:47161 days ago1708067267IN
0x9b47ADC8...aad05AaF6
0 ETH0.0026116623.50521891
Claim192189672024-02-13 12:03:35164 days ago1707825815IN
0x9b47ADC8...aad05AaF6
0 ETH0.0025498422.94883577
Claim192131362024-02-12 16:28:47164 days ago1707755327IN
0x9b47ADC8...aad05AaF6
0 ETH0.0036901939.25324825
Claim192131132024-02-12 16:24:11164 days ago1707755051IN
0x9b47ADC8...aad05AaF6
0 ETH0.0042681338.41358548
Claim190815242024-01-25 5:24:11183 days ago1706160251IN
0x9b47ADC8...aad05AaF6
0 ETH0.0138991912.30423529
Claim188726662023-12-26 21:53:23212 days ago1703627603IN
0x9b47ADC8...aad05AaF6
0 ETH0.0017845316.06093173
Claim188281812023-12-20 16:01:47218 days ago1703088107IN
0x9b47ADC8...aad05AaF6
0 ETH0.0189364978.04938231
Claim187887412023-12-15 3:08:59224 days ago1702609739IN
0x9b47ADC8...aad05AaF6
0 ETH0.0461443641.02352399
Claim187824672023-12-14 6:01:59225 days ago1702533719IN
0x9b47ADC8...aad05AaF6
0 ETH0.0150462744.56241912
Claim185132202023-11-06 13:24:47262 days ago1699277087IN
0x9b47ADC8...aad05AaF6
0 ETH0.0371557736.08088718
Claim180372212023-08-31 21:25:23329 days ago1693517123IN
0x9b47ADC8...aad05AaF6
0 ETH0.0028051725.2468219
Claim179207132023-08-15 14:03:35345 days ago1692108215IN
0x9b47ADC8...aad05AaF6
0 ETH0.0093081839.13929513
Claim179124952023-08-14 10:29:59347 days ago1692008999IN
0x9b47ADC8...aad05AaF6
0 ETH0.0014618513.1568201
Claim179124692023-08-14 10:24:47347 days ago1692008687IN
0x9b47ADC8...aad05AaF6
0 ETH0.0013950412.55552627
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:
CedenKeystoneClaimer

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : CedenKeystoneClaimer.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "./CedenClaimer.sol";
import "./interfaces/ICedenClaimable.sol";

contract CedenKeystoneClaimer is Ownable, Pausable, CedenClaimer {
    ICedenClaimable private _keystoneAddress;

    event KeystoneClaimed(address indexed owner, uint256[] tokenIds);

    constructor(address mintPassAddress, uint256 maxTokenId) CedenClaimer(mintPassAddress, maxTokenId) {
        _pause();
    }

    function claim(uint256[] calldata tokenIds) external whenNotPaused {
        for (uint256 i = 0; i < tokenIds.length; ) {
            uint256 tokenId = tokenIds[i];
            require(_canClaim(tokenId), "CedenKeystoneClaimer: Can't claim");
            _setClaimed(tokenId);
            unchecked {
                ++i;
            }
        }

        _keystoneAddress.claim(msg.sender, tokenIds);
        emit KeystoneClaimed(msg.sender, tokenIds);
    }

    function setKeystoneAddress(address keystoneAddress) external onlyOwner {
        _keystoneAddress = ICedenClaimable(keystoneAddress);
    }

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

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

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

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

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

File 4 of 9 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 6 of 9 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 7 of 9 : BitMaps.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/BitMaps.sol)
pragma solidity ^0.8.0;

/**
 * @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential.
 * Largely inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor].
 */
library BitMaps {
    struct BitMap {
        mapping(uint256 => uint256) _data;
    }

    /**
     * @dev Returns whether the bit at `index` is set.
     */
    function get(BitMap storage bitmap, uint256 index) internal view returns (bool) {
        uint256 bucket = index >> 8;
        uint256 mask = 1 << (index & 0xff);
        return bitmap._data[bucket] & mask != 0;
    }

    /**
     * @dev Sets the bit at `index` to the boolean `value`.
     */
    function setTo(
        BitMap storage bitmap,
        uint256 index,
        bool value
    ) internal {
        if (value) {
            set(bitmap, index);
        } else {
            unset(bitmap, index);
        }
    }

    /**
     * @dev Sets the bit at `index`.
     */
    function set(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = 1 << (index & 0xff);
        bitmap._data[bucket] |= mask;
    }

    /**
     * @dev Unsets the bit at `index`.
     */
    function unset(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = 1 << (index & 0xff);
        bitmap._data[bucket] &= ~mask;
    }
}

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

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/utils/structs/BitMaps.sol";

abstract contract CedenClaimer {
    using BitMaps for BitMaps.BitMap;

    event Claimed(uint256 indexed tokenId);

    IERC721 private immutable _NFT;
    uint256 private immutable _MAX_TOKEN_ID;
    BitMaps.BitMap private _claimed;

    constructor(address nftAddress, uint256 maxTokenId) {
        _NFT = IERC721(nftAddress);
        _MAX_TOKEN_ID = maxTokenId;
    }

    function isClaimed(uint256 tokenId) external view returns (bool) {
        require(tokenId <= _MAX_TOKEN_ID, "CedenClaimer: Invalid token ID");
        return _claimed.get(tokenId);
    }

    function _canClaim(uint256 _tokenId) internal view returns (bool) {
        return _NFT.ownerOf(_tokenId) == msg.sender && !_claimed.get(_tokenId);
    }

    function _setClaimed(uint256 tokenId) internal {
        _claimed.set(tokenId);
        emit Claimed(tokenId);
    }
}

File 9 of 9 : ICedenClaimable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface ICedenClaimable {
    function claim(address receiver, uint256[] calldata tokenIds) external;
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"mintPassAddress","type":"address"},{"internalType":"uint256","name":"maxTokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"KeystoneClaimed","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keystoneAddress","type":"address"}],"name":"setKeystoneAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405234801561001057600080fd5b50604051610a6d380380610a6d83398101604081905261002f91610170565b818161003a33610067565b6000805460ff60a01b191690556001600160a01b0390911660805260a0526100606100b7565b50506101aa565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6100bf610117565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586100fa3390565b6040516001600160a01b03909116815260200160405180910390a1565b61012a600054600160a01b900460ff1690565b1561016e5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b565b6000806040838503121561018357600080fd5b82516001600160a01b038116811461019a57600080fd5b6020939093015192949293505050565b60805160a05161089e6101cf60003960006102f201526000610521015261089e6000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c8063715018a611610066578063715018a6146100eb5780638456cb59146100f35780638da5cb5b146100fb5780639e34070f14610116578063f2fde38b1461012957600080fd5b806326decd5e146100985780633f4ba83a146100ad5780635c975abb146100b55780636ba4c138146100d8575b600080fd5b6100ab6100a6366004610707565b61013c565b005b6100ab610166565b600054600160a01b900460ff165b60405190151581526020015b60405180910390f35b6100ab6100e636600461072b565b610178565b6100ab6102cc565b6100ab6102de565b6000546040516001600160a01b0390911681526020016100cf565b6100c36101243660046107a0565b6102ee565b6100ab610137366004610707565b610389565b610144610402565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b61016e610402565b61017661045c565b565b6101806104b1565b60005b8181101561021e57600083838381811061019f5761019f6107b9565b9050602002013590506101b1816104fe565b61020c5760405162461bcd60e51b815260206004820152602160248201527f436564656e4b657973746f6e65436c61696d65723a2043616e277420636c61696044820152606d60f81b60648201526084015b60405180910390fd5b610215816105c0565b50600101610183565b506002546040516308ae304f60e31b81526001600160a01b039091169063457182789061025390339086908690600401610801565b600060405180830381600087803b15801561026d57600080fd5b505af1158015610281573d6000803e3d6000fd5b50505050336001600160a01b03167f8b3dd708bdad78af00f255cb45c65739593abcdd178d01e09f9e36b68c8d327883836040516102c092919061082f565b60405180910390a25050565b6102d4610402565b610176600061060f565b6102e6610402565b61017661065f565b60007f00000000000000000000000000000000000000000000000000000000000000008211156103605760405162461bcd60e51b815260206004820152601e60248201527f436564656e436c61696d65723a20496e76616c696420746f6b656e20494400006044820152606401610203565b600882901c60009081526001602081905260409091205460ff84169190911b1615155b92915050565b610391610402565b6001600160a01b0381166103f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610203565b6103ff8161060f565b50565b6000546001600160a01b031633146101765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610203565b6104646106a2565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600054600160a01b900460ff16156101765760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610203565b6040516331a9108f60e11b81526004810182905260009033906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa158015610568573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058c919061084b565b6001600160a01b0316148015610383575050600881901c60009081526001602081905260409091205460ff9092161b161590565b600881901c6000908152600160208190526040808320805460ff86169390931b9092179091555182917f7a355715549cfe7c1cba26304350343fbddc4b4f72d3ce3e7c27117dd20b5cb891a250565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6106676104b1565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586104943390565b600054600160a01b900460ff166101765760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610203565b6001600160a01b03811681146103ff57600080fd5b60006020828403121561071957600080fd5b8135610724816106f2565b9392505050565b6000806020838503121561073e57600080fd5b823567ffffffffffffffff8082111561075657600080fd5b818501915085601f83011261076a57600080fd5b81358181111561077957600080fd5b8660208260051b850101111561078e57600080fd5b60209290920196919550909350505050565b6000602082840312156107b257600080fd5b5035919050565b634e487b7160e01b600052603260045260246000fd5b81835260006001600160fb1b038311156107e857600080fd5b8260051b80836020870137939093016020019392505050565b6001600160a01b038416815260406020820181905260009061082690830184866107cf565b95945050505050565b6020815260006108436020830184866107cf565b949350505050565b60006020828403121561085d57600080fd5b8151610724816106f256fea2646970667358221220e049697115da0c86ad3a7fb345fac23d69099db185da91503e7c6be21037410a64736f6c634300081200330000000000000000000000004350f31b3aaaa1dcf16c2ff18db4e2f718f50d6d0000000000000000000000000000000000000000000000000000000000000d05

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100935760003560e01c8063715018a611610066578063715018a6146100eb5780638456cb59146100f35780638da5cb5b146100fb5780639e34070f14610116578063f2fde38b1461012957600080fd5b806326decd5e146100985780633f4ba83a146100ad5780635c975abb146100b55780636ba4c138146100d8575b600080fd5b6100ab6100a6366004610707565b61013c565b005b6100ab610166565b600054600160a01b900460ff165b60405190151581526020015b60405180910390f35b6100ab6100e636600461072b565b610178565b6100ab6102cc565b6100ab6102de565b6000546040516001600160a01b0390911681526020016100cf565b6100c36101243660046107a0565b6102ee565b6100ab610137366004610707565b610389565b610144610402565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b61016e610402565b61017661045c565b565b6101806104b1565b60005b8181101561021e57600083838381811061019f5761019f6107b9565b9050602002013590506101b1816104fe565b61020c5760405162461bcd60e51b815260206004820152602160248201527f436564656e4b657973746f6e65436c61696d65723a2043616e277420636c61696044820152606d60f81b60648201526084015b60405180910390fd5b610215816105c0565b50600101610183565b506002546040516308ae304f60e31b81526001600160a01b039091169063457182789061025390339086908690600401610801565b600060405180830381600087803b15801561026d57600080fd5b505af1158015610281573d6000803e3d6000fd5b50505050336001600160a01b03167f8b3dd708bdad78af00f255cb45c65739593abcdd178d01e09f9e36b68c8d327883836040516102c092919061082f565b60405180910390a25050565b6102d4610402565b610176600061060f565b6102e6610402565b61017661065f565b60007f0000000000000000000000000000000000000000000000000000000000000d058211156103605760405162461bcd60e51b815260206004820152601e60248201527f436564656e436c61696d65723a20496e76616c696420746f6b656e20494400006044820152606401610203565b600882901c60009081526001602081905260409091205460ff84169190911b1615155b92915050565b610391610402565b6001600160a01b0381166103f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610203565b6103ff8161060f565b50565b6000546001600160a01b031633146101765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610203565b6104646106a2565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600054600160a01b900460ff16156101765760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610203565b6040516331a9108f60e11b81526004810182905260009033906001600160a01b037f0000000000000000000000004350f31b3aaaa1dcf16c2ff18db4e2f718f50d6d1690636352211e90602401602060405180830381865afa158015610568573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058c919061084b565b6001600160a01b0316148015610383575050600881901c60009081526001602081905260409091205460ff9092161b161590565b600881901c6000908152600160208190526040808320805460ff86169390931b9092179091555182917f7a355715549cfe7c1cba26304350343fbddc4b4f72d3ce3e7c27117dd20b5cb891a250565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6106676104b1565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586104943390565b600054600160a01b900460ff166101765760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610203565b6001600160a01b03811681146103ff57600080fd5b60006020828403121561071957600080fd5b8135610724816106f2565b9392505050565b6000806020838503121561073e57600080fd5b823567ffffffffffffffff8082111561075657600080fd5b818501915085601f83011261076a57600080fd5b81358181111561077957600080fd5b8660208260051b850101111561078e57600080fd5b60209290920196919550909350505050565b6000602082840312156107b257600080fd5b5035919050565b634e487b7160e01b600052603260045260246000fd5b81835260006001600160fb1b038311156107e857600080fd5b8260051b80836020870137939093016020019392505050565b6001600160a01b038416815260406020820181905260009061082690830184866107cf565b95945050505050565b6020815260006108436020830184866107cf565b949350505050565b60006020828403121561085d57600080fd5b8151610724816106f256fea2646970667358221220e049697115da0c86ad3a7fb345fac23d69099db185da91503e7c6be21037410a64736f6c63430008120033

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

0000000000000000000000004350f31b3aaaa1dcf16c2ff18db4e2f718f50d6d0000000000000000000000000000000000000000000000000000000000000d05

-----Decoded View---------------
Arg [0] : mintPassAddress (address): 0x4350F31B3AaAA1dCf16c2fF18DB4E2F718f50D6D
Arg [1] : maxTokenId (uint256): 3333

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000004350f31b3aaaa1dcf16c2ff18db4e2f718f50d6d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000d05


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.