Overview
ETH Balance
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 230 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Pause | 1716446 | 1122 days ago | IN | 0 ETH | 0.00000052 | ||||
| Unpause | 1716308 | 1122 days ago | IN | 0 ETH | 0.0000003 | ||||
| Withdraw All | 1047116 | 1176 days ago | IN | 0 ETH | 0.00000429 | ||||
| Pause | 1045623 | 1176 days ago | IN | 0 ETH | 0.00000473 | ||||
| Mint | 979365 | 1181 days ago | IN | 0.15 ETH | 0.00002171 | ||||
| Mint | 979358 | 1181 days ago | IN | 0.15 ETH | 0.00002171 | ||||
| Mint | 979294 | 1181 days ago | IN | 0.15 ETH | 0.00002191 | ||||
| Mint | 978986 | 1181 days ago | IN | 0.15 ETH | 0.00002188 | ||||
| Mint | 978925 | 1181 days ago | IN | 0.15 ETH | 0.00002188 | ||||
| Mint | 978244 | 1181 days ago | IN | 0.15 ETH | 0.00002144 | ||||
| Mint | 978174 | 1181 days ago | IN | 0.15 ETH | 0.00002173 | ||||
| Mint | 977954 | 1181 days ago | IN | 0.15 ETH | 0.00002144 | ||||
| Mint | 977101 | 1181 days ago | IN | 0.15 ETH | 0.00002146 | ||||
| Mint | 976945 | 1181 days ago | IN | 0.15 ETH | 0.00002177 | ||||
| Mint | 976916 | 1181 days ago | IN | 0.15 ETH | 0.00002148 | ||||
| Mint | 976519 | 1181 days ago | IN | 0.15 ETH | 0.00002181 | ||||
| Mint | 976297 | 1181 days ago | IN | 0.15 ETH | 0.00002181 | ||||
| Mint | 975604 | 1181 days ago | IN | 0.15 ETH | 0.00002186 | ||||
| Mint | 973684 | 1181 days ago | IN | 0.15 ETH | 0.00002166 | ||||
| Mint | 973667 | 1181 days ago | IN | 0.15 ETH | 0.00002166 | ||||
| Mint | 972522 | 1181 days ago | IN | 0.15 ETH | 0.00002172 | ||||
| Mint | 972363 | 1181 days ago | IN | 0.15 ETH | 0.00002172 | ||||
| Mint | 972253 | 1181 days ago | IN | 0.15 ETH | 0.00002172 | ||||
| Mint | 972244 | 1181 days ago | IN | 0.15 ETH | 0.00002172 | ||||
| Mint | 971975 | 1181 days ago | IN | 0.15 ETH | 0.00002147 |
Cross-Chain Transactions
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {Pausable} from "@openzeppelin/contracts/security/Pausable.sol";
import {IERC721Mintable} from "../interfaces/IERC721Mintable.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract AllowlistMinter is Pausable, ReentrancyGuard, Ownable {
IERC721Mintable public immutable nft;
uint256 public mintPrice = 0.18 ether;
uint256 public mintWindow = 1 days;
uint256 public startTimestamp = type(uint256).max;
bytes32 public allowlistMerkleRoot;
mapping(address => mapping(uint256 => bool)) public allowlistMinted;
address payable public artistWallet;
event AllowlistMinted(address indexed _minter, uint256 _tokenId);
constructor(IERC721Mintable _nft) {
nft = _nft;
_pause();
}
function mint(bytes32[] calldata _merkleProof) public payable whenNotPaused nonReentrant {
require(block.timestamp >= startTimestamp, "Allowlist minting not started yet");
require(msg.value == mintPrice, "Not enough ETH sent");
// verify didn't already mint for a given window
uint256 day = block.timestamp / mintWindow;
require(!allowlistMinted[msg.sender][day], "Already minted");
allowlistMinted[msg.sender][day] = true;
require(
MerkleProof.verify(_merkleProof, allowlistMerkleRoot, keccak256(abi.encodePacked(msg.sender))),
"Invalid proof."
);
uint256[] memory tokenID = nft.mintBatch(msg.sender, 1);
emit AllowlistMinted(msg.sender, tokenID[0]);
}
function canMintToday(address _address) external view returns (bool) {
uint256 day = block.timestamp / mintWindow;
return allowlistMinted[_address][day];
}
function setAllowlistMerkleRoot(bytes32 _allowlistMerkleRoot) public onlyOwner {
allowlistMerkleRoot = _allowlistMerkleRoot;
}
function pause() external onlyOwner {
_pause();
}
function unpause() external onlyOwner {
_unpause();
}
function setStartTimestamp(uint256 _startTimestamp) external onlyOwner {
startTimestamp = _startTimestamp;
}
function setMintPrice(uint256 _mintPrice) external onlyOwner {
mintPrice = _mintPrice;
}
function setArtistWallet(address payable _artistWallet) external onlyOwner {
artistWallet = _artistWallet;
}
function setMintWindow(uint256 _mintWindow) external onlyOwner {
mintWindow = _mintWindow;
}
function withdrawAll() public payable onlyOwner {
require(artistWallet != address(0), "Artist wallet not set");
uint256 balance = address(this).balance;
uint256 artistBalance = balance / 10;
uint256 ownerBalance = balance - artistBalance;
require(payable(msg.sender).send(ownerBalance));
require(payable(artistWallet).send(artistBalance));
}
function forwardERC20s(IERC20 _token, uint256 amount) public onlyOwner {
_token.transfer(msg.sender, amount);
}
}// SPDX-License-Identifier: MIT
import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";
pragma solidity ^0.8.16;
interface IERC721Mintable is IERC721 {
function mint(address recipient) external returns (uint256);
function mintBatch(address recipient, uint256 quantity) external returns (uint256[] memory tokenIds);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Tree proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*
* WARNING: You should avoid using leaf values that are 64 bytes long prior to
* hashing, or use a hash function other than keccak256 for hashing leaves.
* This is because the concatenation of a sorted pair of internal nodes in
* the merkle tree could be reinterpreted as a leaf value.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Calldata version of {verify}
*
* _Available since v4.7._
*/
function verifyCalldata(
bytes32[] calldata proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProofCalldata(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Calldata version of {processProof}
*
* _Available since v4.7._
*/
function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
* `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
*
* _Available since v4.7._
*/
function multiProofVerify(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProof(proof, proofFlags, leaves) == root;
}
/**
* @dev Calldata version of {multiProofVerify}
*
* _Available since v4.7._
*/
function multiProofVerifyCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProofCalldata(proof, proofFlags, leaves) == root;
}
/**
* @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
* consuming from one or the other at each step according to the instructions given by
* `proofFlags`.
*
* _Available since v4.7._
*/
function processMultiProof(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
/**
* @dev Calldata version of {processMultiProof}
*
* _Available since v4.7._
*/
function processMultiProofCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
}
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// 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());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev 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);
}// 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);
}// 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;
}
}{
"metadata": {
"bytecodeHash": "none",
"useLiteralContent": true
},
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IERC721Mintable","name":"_nft","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"AllowlistMinted","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":[],"name":"allowlistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"allowlistMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"artistWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"canMintToday","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"forwardERC20s","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintWindow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nft","outputs":[{"internalType":"contract IERC721Mintable","name":"","type":"address"}],"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":"bytes32","name":"_allowlistMerkleRoot","type":"bytes32"}],"name":"setAllowlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_artistWallet","type":"address"}],"name":"setArtistWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintWindow","type":"uint256"}],"name":"setMintWindow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTimestamp","type":"uint256"}],"name":"setStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
60a060405267027f7d0bdb9200006003556201518060045560001960055534801561002957600080fd5b5060405161105f38038061105f83398101604081905261004891610172565b6000805460ff191690556001805561005f3361007a565b6001600160a01b0381166080526100746100cc565b506101a2565b600280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6100d4610126565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586101093390565b6040516001600160a01b03909116815260200160405180910390a1565b60005460ff16156101705760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b565b60006020828403121561018457600080fd5b81516001600160a01b038116811461019b57600080fd5b9392505050565b608051610e9b6101c4600039600081816101d701526107d70152610e9b6000f3fe6080604052600436106101355760003560e01c80639ce93edf116100ab578063f2fde38b1161006f578063f2fde38b1461032e578063f4a0a5281461034e578063f64d5eaa1461036e578063f95df4141461038e578063f9956494146103ae578063fce57fd9146103ce57600080fd5b80639ce93edf146102af578063a3342fba146102c5578063b77a147b146102e5578063c44bef75146102f8578063e6fd48bc1461031857600080fd5b80636817c76c116100fd5780636817c76c14610229578063715018a61461023f5780638456cb5914610254578063853828b6146102695780638da5cb5b146102715780639727151a1461028f57600080fd5b80631c129f291461013a578063293108e01461018a5780633f4ba83a146101ae57806347ccca02146101c55780635c975abb14610211575b600080fd5b34801561014657600080fd5b50610175610155366004610c47565b600760209081526000928352604080842090915290825290205460ff1681565b60405190151581526020015b60405180910390f35b34801561019657600080fd5b506101a060065481565b604051908152602001610181565b3480156101ba57600080fd5b506101c36103ee565b005b3480156101d157600080fd5b506101f97f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610181565b34801561021d57600080fd5b5060005460ff16610175565b34801561023557600080fd5b506101a060035481565b34801561024b57600080fd5b506101c3610400565b34801561026057600080fd5b506101c3610412565b6101c3610422565b34801561027d57600080fd5b506002546001600160a01b03166101f9565b34801561029b57600080fd5b506101c36102aa366004610c47565b6104fa565b3480156102bb57600080fd5b506101a060045481565b3480156102d157600080fd5b506008546101f9906001600160a01b031681565b6101c36102f3366004610c73565b610573565b34801561030457600080fd5b506101c3610313366004610ce8565b6108b9565b34801561032457600080fd5b506101a060055481565b34801561033a57600080fd5b506101c3610349366004610d01565b6108c6565b34801561035a57600080fd5b506101c3610369366004610ce8565b61093f565b34801561037a57600080fd5b506101c3610389366004610ce8565b61094c565b34801561039a57600080fd5b506101c36103a9366004610ce8565b610959565b3480156103ba57600080fd5b506101756103c9366004610d01565b610966565b3480156103da57600080fd5b506101c36103e9366004610d01565b6109a7565b6103f66109d1565b6103fe610a2b565b565b6104086109d1565b6103fe6000610a7d565b61041a6109d1565b6103fe610acf565b61042a6109d1565b6008546001600160a01b031661047f5760405162461bcd60e51b8152602060048201526015602482015274105c9d1a5cdd081dd85b1b195d081b9bdd081cd95d605a1b60448201526064015b60405180910390fd5b47600061048d600a83610d34565b9050600061049b8284610d56565b604051909150339082156108fc029083906000818181858888f193505050506104c357600080fd5b6008546040516001600160a01b039091169083156108fc029084906000818181858888f193505050506104f557600080fd5b505050565b6105026109d1565b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af115801561054f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f59190610d69565b61057b610b0c565b6002600154036105cd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610476565b600260015560055442101561062e5760405162461bcd60e51b815260206004820152602160248201527f416c6c6f776c697374206d696e74696e67206e6f7420737461727465642079656044820152601d60fa1b6064820152608401610476565b60035434146106755760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610476565b6000600454426106859190610d34565b33600090815260076020908152604080832084845290915290205490915060ff16156106e45760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481b5a5b9d195960921b6044820152606401610476565b336000908152600760209081526040808320848452825291829020805460ff191660011790558151848202818101830190935284815261077b92909186918691829190850190849080828437600092019190915250506006546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120610b52565b6107b85760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610476565b604051630922dc7f60e21b8152336004820152600160248201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063248b71fc906044016000604051808303816000875af1158015610828573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526108509190810190610da1565b9050336001600160a01b03167f0926236569819f01608d964070a5640e67adaa5a3f1cd783ae86954e260075728260008151811061089057610890610e5f565b60200260200101516040516108a791815260200190565b60405180910390a25050600180555050565b6108c16109d1565b600555565b6108ce6109d1565b6001600160a01b0381166109335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610476565b61093c81610a7d565b50565b6109476109d1565b600355565b6109546109d1565b600455565b6109616109d1565b600655565b600080600454426109779190610d34565b6001600160a01b039093166000908152600760209081526040808320958352949052929092205460ff1692915050565b6109af6109d1565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b031633146103fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610476565b610a33610b68565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ad7610b0c565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610a603390565b60005460ff16156103fe5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610476565b600082610b5f8584610bb1565b14949350505050565b60005460ff166103fe5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610476565b600081815b8451811015610bf657610be282868381518110610bd557610bd5610e5f565b6020026020010151610c00565b915080610bee81610e75565b915050610bb6565b5090505b92915050565b6000818310610c1c576000828152602084905260409020610c2b565b60008381526020839052604090205b9392505050565b6001600160a01b038116811461093c57600080fd5b60008060408385031215610c5a57600080fd5b8235610c6581610c32565b946020939093013593505050565b60008060208385031215610c8657600080fd5b823567ffffffffffffffff80821115610c9e57600080fd5b818501915085601f830112610cb257600080fd5b813581811115610cc157600080fd5b8660208260051b8501011115610cd657600080fd5b60209290920196919550909350505050565b600060208284031215610cfa57600080fd5b5035919050565b600060208284031215610d1357600080fd5b8135610c2b81610c32565b634e487b7160e01b600052601160045260246000fd5b600082610d5157634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610bfa57610bfa610d1e565b600060208284031215610d7b57600080fd5b81518015158114610c2b57600080fd5b634e487b7160e01b600052604160045260246000fd5b60006020808385031215610db457600080fd5b825167ffffffffffffffff80821115610dcc57600080fd5b818501915085601f830112610de057600080fd5b815181811115610df257610df2610d8b565b8060051b604051601f19603f83011681018181108582111715610e1757610e17610d8b565b604052918252848201925083810185019188831115610e3557600080fd5b938501935b82851015610e5357845184529385019392850192610e3a565b98975050505050505050565b634e487b7160e01b600052603260045260246000fd5b600060018201610e8757610e87610d1e565b506001019056fea164736f6c6343000811000a0000000000000000000000006f81e9d51bf482ec3f3724b28eefe9f9fbe4fe04
Deployed Bytecode
0x6080604052600436106101355760003560e01c80639ce93edf116100ab578063f2fde38b1161006f578063f2fde38b1461032e578063f4a0a5281461034e578063f64d5eaa1461036e578063f95df4141461038e578063f9956494146103ae578063fce57fd9146103ce57600080fd5b80639ce93edf146102af578063a3342fba146102c5578063b77a147b146102e5578063c44bef75146102f8578063e6fd48bc1461031857600080fd5b80636817c76c116100fd5780636817c76c14610229578063715018a61461023f5780638456cb5914610254578063853828b6146102695780638da5cb5b146102715780639727151a1461028f57600080fd5b80631c129f291461013a578063293108e01461018a5780633f4ba83a146101ae57806347ccca02146101c55780635c975abb14610211575b600080fd5b34801561014657600080fd5b50610175610155366004610c47565b600760209081526000928352604080842090915290825290205460ff1681565b60405190151581526020015b60405180910390f35b34801561019657600080fd5b506101a060065481565b604051908152602001610181565b3480156101ba57600080fd5b506101c36103ee565b005b3480156101d157600080fd5b506101f97f0000000000000000000000006f81e9d51bf482ec3f3724b28eefe9f9fbe4fe0481565b6040516001600160a01b039091168152602001610181565b34801561021d57600080fd5b5060005460ff16610175565b34801561023557600080fd5b506101a060035481565b34801561024b57600080fd5b506101c3610400565b34801561026057600080fd5b506101c3610412565b6101c3610422565b34801561027d57600080fd5b506002546001600160a01b03166101f9565b34801561029b57600080fd5b506101c36102aa366004610c47565b6104fa565b3480156102bb57600080fd5b506101a060045481565b3480156102d157600080fd5b506008546101f9906001600160a01b031681565b6101c36102f3366004610c73565b610573565b34801561030457600080fd5b506101c3610313366004610ce8565b6108b9565b34801561032457600080fd5b506101a060055481565b34801561033a57600080fd5b506101c3610349366004610d01565b6108c6565b34801561035a57600080fd5b506101c3610369366004610ce8565b61093f565b34801561037a57600080fd5b506101c3610389366004610ce8565b61094c565b34801561039a57600080fd5b506101c36103a9366004610ce8565b610959565b3480156103ba57600080fd5b506101756103c9366004610d01565b610966565b3480156103da57600080fd5b506101c36103e9366004610d01565b6109a7565b6103f66109d1565b6103fe610a2b565b565b6104086109d1565b6103fe6000610a7d565b61041a6109d1565b6103fe610acf565b61042a6109d1565b6008546001600160a01b031661047f5760405162461bcd60e51b8152602060048201526015602482015274105c9d1a5cdd081dd85b1b195d081b9bdd081cd95d605a1b60448201526064015b60405180910390fd5b47600061048d600a83610d34565b9050600061049b8284610d56565b604051909150339082156108fc029083906000818181858888f193505050506104c357600080fd5b6008546040516001600160a01b039091169083156108fc029084906000818181858888f193505050506104f557600080fd5b505050565b6105026109d1565b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af115801561054f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f59190610d69565b61057b610b0c565b6002600154036105cd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610476565b600260015560055442101561062e5760405162461bcd60e51b815260206004820152602160248201527f416c6c6f776c697374206d696e74696e67206e6f7420737461727465642079656044820152601d60fa1b6064820152608401610476565b60035434146106755760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610476565b6000600454426106859190610d34565b33600090815260076020908152604080832084845290915290205490915060ff16156106e45760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481b5a5b9d195960921b6044820152606401610476565b336000908152600760209081526040808320848452825291829020805460ff191660011790558151848202818101830190935284815261077b92909186918691829190850190849080828437600092019190915250506006546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120610b52565b6107b85760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610476565b604051630922dc7f60e21b8152336004820152600160248201526000907f0000000000000000000000006f81e9d51bf482ec3f3724b28eefe9f9fbe4fe046001600160a01b03169063248b71fc906044016000604051808303816000875af1158015610828573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526108509190810190610da1565b9050336001600160a01b03167f0926236569819f01608d964070a5640e67adaa5a3f1cd783ae86954e260075728260008151811061089057610890610e5f565b60200260200101516040516108a791815260200190565b60405180910390a25050600180555050565b6108c16109d1565b600555565b6108ce6109d1565b6001600160a01b0381166109335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610476565b61093c81610a7d565b50565b6109476109d1565b600355565b6109546109d1565b600455565b6109616109d1565b600655565b600080600454426109779190610d34565b6001600160a01b039093166000908152600760209081526040808320958352949052929092205460ff1692915050565b6109af6109d1565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b031633146103fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610476565b610a33610b68565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ad7610b0c565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610a603390565b60005460ff16156103fe5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610476565b600082610b5f8584610bb1565b14949350505050565b60005460ff166103fe5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610476565b600081815b8451811015610bf657610be282868381518110610bd557610bd5610e5f565b6020026020010151610c00565b915080610bee81610e75565b915050610bb6565b5090505b92915050565b6000818310610c1c576000828152602084905260409020610c2b565b60008381526020839052604090205b9392505050565b6001600160a01b038116811461093c57600080fd5b60008060408385031215610c5a57600080fd5b8235610c6581610c32565b946020939093013593505050565b60008060208385031215610c8657600080fd5b823567ffffffffffffffff80821115610c9e57600080fd5b818501915085601f830112610cb257600080fd5b813581811115610cc157600080fd5b8660208260051b8501011115610cd657600080fd5b60209290920196919550909350505050565b600060208284031215610cfa57600080fd5b5035919050565b600060208284031215610d1357600080fd5b8135610c2b81610c32565b634e487b7160e01b600052601160045260246000fd5b600082610d5157634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610bfa57610bfa610d1e565b600060208284031215610d7b57600080fd5b81518015158114610c2b57600080fd5b634e487b7160e01b600052604160045260246000fd5b60006020808385031215610db457600080fd5b825167ffffffffffffffff80821115610dcc57600080fd5b818501915085601f830112610de057600080fd5b815181811115610df257610df2610d8b565b8060051b604051601f19603f83011681018181108582111715610e1757610e17610d8b565b604052918252848201925083810185019188831115610e3557600080fd5b938501935b82851015610e5357845184529385019392850192610e3a565b98975050505050505050565b634e487b7160e01b600052603260045260246000fd5b600060018201610e8757610e87610d1e565b506001019056fea164736f6c6343000811000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006f81e9d51bf482ec3f3724b28eefe9f9fbe4fe04
-----Decoded View---------------
Arg [0] : _nft (address): 0x6f81e9D51Bf482EC3f3724B28eEFE9f9fBe4Fe04
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006f81e9d51bf482ec3f3724b28eefe9f9fbe4fe04
Net Worth in USD
Net Worth in ETH
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.