More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 112 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Release | 19550534 | 380 days ago | IN | 0 ETH | 0.01262957 | ||||
Release | 19537090 | 382 days ago | IN | 0 ETH | 0.01033945 | ||||
Sell | 14596337 | 1095 days ago | IN | 0.08 ETH | 0.00262177 | ||||
Sell | 14246558 | 1149 days ago | IN | 0.08 ETH | 0.01528623 | ||||
Sell | 14239020 | 1150 days ago | IN | 0.08 ETH | 0.0078173 | ||||
Sell | 14236440 | 1151 days ago | IN | 0.08 ETH | 0.00605056 | ||||
Sell | 14229439 | 1152 days ago | IN | 0.08 ETH | 0.01206095 | ||||
Sell | 14228980 | 1152 days ago | IN | 0.08 ETH | 0.01537401 | ||||
Sell | 14227586 | 1152 days ago | IN | 0.08 ETH | 0.00520472 | ||||
Sell | 14224196 | 1153 days ago | IN | 0.08 ETH | 0.00711529 | ||||
Sell | 14215830 | 1154 days ago | IN | 0.08 ETH | 0.00534369 | ||||
Sell | 14214381 | 1154 days ago | IN | 0.08 ETH | 0.00831374 | ||||
Sell | 14214249 | 1154 days ago | IN | 0.08 ETH | 0.01340211 | ||||
Sell | 14214226 | 1154 days ago | IN | 0.08 ETH | 0.01477145 | ||||
Sell | 14213428 | 1154 days ago | IN | 0.08 ETH | 0.00557751 | ||||
Sell | 14213229 | 1154 days ago | IN | 0.08 ETH | 0.00557751 | ||||
Sell | 14211652 | 1155 days ago | IN | 0.08 ETH | 0.00831238 | ||||
Sell | 14211578 | 1155 days ago | IN | 0.08 ETH | 0.00995052 | ||||
Sell | 14211061 | 1155 days ago | IN | 0.08 ETH | 0.0062737 | ||||
Sell | 14211020 | 1155 days ago | IN | 0.08 ETH | 0.00161223 | ||||
Sell | 14210987 | 1155 days ago | IN | 0.08 ETH | 0.00960797 | ||||
Sell | 14210970 | 1155 days ago | IN | 0.08 ETH | 0.0077688 | ||||
Sell | 14210934 | 1155 days ago | IN | 0.08 ETH | 0.00964628 | ||||
Sell | 14210560 | 1155 days ago | IN | 0.08 ETH | 0.00483076 | ||||
Sell | 14210560 | 1155 days ago | IN | 0.08 ETH | 0.00554531 |
Loading...
Loading
Contract Name:
ChocoMintSellableWrapper
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "../../interfaces/IChocoMintERC721.sol"; contract ChocoMintSellableWrapper is PaymentSplitter { IChocoMintERC721 public chocomintERC721; uint256 public supplied; uint256 public mintPrice; uint256 public supplyLimit; uint256 public saleStartTimestamp; constructor( address _chocomintERC721Address, uint256 _mintPrice, uint256 _supplyLimit, uint256 _saleStartTimestamp, address[] memory _payees, uint256[] memory _shares ) PaymentSplitter(_payees, _shares) { chocomintERC721 = IChocoMintERC721(_chocomintERC721Address); mintPrice = _mintPrice; supplyLimit = _supplyLimit; saleStartTimestamp = _saleStartTimestamp; } function sell() public payable { require(block.timestamp >= saleStartTimestamp, "SellableWrapper: sale has not started"); require(msg.value == mintPrice, "SellableWrapper: msg value must be same as mint price"); require(supplied < supplyLimit, "SellableWrapper: sale has already ended"); SecurityLib.SecurityData memory validSecurityData = SecurityLib.SecurityData(0, 9999999999, 0); MintERC721Lib.MintERC721Data memory mintERC721Data = MintERC721Lib.MintERC721Data( validSecurityData, address(this), msg.sender, supplied + 1, "" ); bytes32 root = MintERC721Lib.hashStruct(mintERC721Data); SignatureLib.SignatureData memory signatureData = SignatureLib.SignatureData(root, new bytes32[](0), ""); chocomintERC721.mint(mintERC721Data, signatureData); supplied++; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Address.sol"; import "../utils/Context.sol"; import "../utils/math/SafeMath.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + _totalReleased; uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account]; require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] = _released[account] + payment; _totalReleased = _totalReleased + payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/MintERC721Lib.sol"; import "../utils/SignatureLib.sol"; interface IChocoMintERC721 { event Minted(bytes32 indexed mintERC721Hash); function mint(MintERC721Lib.MintERC721Data memory mintERC721Data, SignatureLib.SignatureData memory signatureData) external; function isMinted(uint256 tokenId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./SecurityLib.sol"; import "./SignatureLib.sol"; library MintERC721Lib { struct MintERC721Data { SecurityLib.SecurityData securityData; address minter; address to; uint256 tokenId; bytes data; } bytes32 private constant _MINT_ERC721_TYPEHASH = keccak256( bytes( "MintERC721Data(SecurityData securityData,address minter,address to,uint256 tokenId,bytes data)SecurityData(uint256 validFrom,uint256 validTo,uint256 salt)" ) ); function hashStruct(MintERC721Data memory mintERC721Data) internal pure returns (bytes32) { return keccak256( abi.encode( _MINT_ERC721_TYPEHASH, SecurityLib.hashStruct(mintERC721Data.securityData), mintERC721Data.minter, mintERC721Data.to, mintERC721Data.tokenId, keccak256(mintERC721Data.data) ) ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library SignatureLib { struct SignatureData { bytes32 root; bytes32[] proof; bytes signature; } bytes32 private constant _SIGNATURE_DATA_TYPEHASH = keccak256(bytes("SignatureData(bytes32 root)")); function hashStruct(SignatureData memory signatureData) internal pure returns (bytes32) { return keccak256(abi.encode(_SIGNATURE_DATA_TYPEHASH, signatureData.root)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library SecurityLib { struct SecurityData { uint256 validFrom; uint256 validTo; uint256 salt; } bytes32 private constant _SECURITY_TYPEHASH = keccak256(abi.encodePacked("SecurityData(uint256 validFrom,uint256 validTo,uint256 salt)")); function validate(SecurityData memory securityData) internal view returns (bool, string memory) { if (securityData.validFrom > block.timestamp) { return (false, "SecurityLib: valid from verification failed"); } if (securityData.validTo < block.timestamp) { return (false, "SecurityLib: valid to verification failed"); } return (true, ""); } function hashStruct(SecurityData memory securityData) internal pure returns (bytes32) { return keccak256(abi.encode(_SECURITY_TYPEHASH, securityData.validFrom, securityData.validTo, securityData.salt)); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_chocomintERC721Address","type":"address"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_supplyLimit","type":"uint256"},{"internalType":"uint256","name":"_saleStartTimestamp","type":"uint256"},{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"inputs":[],"name":"chocomintERC721","outputs":[{"internalType":"contract IChocoMintERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sell","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplied","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200139f3803806200139f833981016040819052620000349162000304565b81818051825114620000635760405162461bcd60e51b81526004016200005a9062000468565b60405180910390fd5b6000825111620000875760405162461bcd60e51b81526004016200005a9062000505565b60005b82518110156200010b57620000f6838281518110620000b957634e487b7160e01b600052603260045260246000fd5b6020026020010151838381518110620000e257634e487b7160e01b600052603260045260246000fd5b60200260200101516200014360201b60201c565b806200010281620005e0565b9150506200008a565b5050600580546001600160a01b0319166001600160a01b0398909816979097179096555050600792909255600855600955506200062a565b6001600160a01b0382166200016c5760405162461bcd60e51b81526004016200005a906200041c565b600081116200018f5760405162461bcd60e51b81526004016200005a906200053c565b6001600160a01b03821660009081526002602052604090205415620001c85760405162461bcd60e51b81526004016200005a90620004ba565b60048054600181019091557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319166001600160a01b03841690811790915560009081526002602052604081208290555462000230908290620005c5565b6000556040517f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac9062000267908490849062000403565b60405180910390a15050565b80516001600160a01b03811681146200028b57600080fd5b919050565b600082601f830112620002a1578081fd5b81516020620002ba620002b4836200059f565b62000573565b8281528181019085830183850287018401881015620002d7578586fd5b855b85811015620002f757815184529284019290840190600101620002d9565b5090979650505050505050565b60008060008060008060c087890312156200031d578182fd5b620003288762000273565b60208881015160408a015160608b015160808c0151949a5091985096509450906001600160401b03808211156200035d578485fd5b818a0191508a601f83011262000371578485fd5b815162000382620002b4826200059f565b81815284810190848601868402860187018f10156200039f578889fd5b8895505b83861015620003cc57620003b78162000273565b835260019590950194918601918601620003a3565b5060a08d01519097509450505080831115620003e6578384fd5b5050620003f689828a0162000290565b9150509295509295509295565b6001600160a01b03929092168252602082015260400190565b6020808252602c908201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060408201526b7a65726f206164647265737360a01b606082015260800190565b60208082526032908201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726040820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960408201526a206861732073686172657360a81b606082015260800190565b6020808252601a908201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604082015260600190565b6020808252601d908201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604082015260600190565b6040518181016001600160401b038111828210171562000597576200059762000614565b604052919050565b60006001600160401b03821115620005bb57620005bb62000614565b5060209081020190565b60008219821115620005db57620005db620005fe565b500190565b6000600019821415620005f757620005f7620005fe565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b610d65806200063a6000396000f3fe6080604052600436106100ab5760003560e01c80636e422831116100645780636e4228311461018b5780638b83209b146101a05780639852595c146101cd5780639cf0772d146101ed578063ce7c2ac214610202578063e33b7de314610222576100f2565b806319165587146100f757806319d1997a146101195780633a98ef39146101445780633c276d8614610159578063457100741461016e5780636817c76c14610176576100f2565b366100f2577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706100d9610237565b346040516100e89291906108e1565b60405180910390a1005b600080fd5b34801561010357600080fd5b50610117610112366004610785565b61023b565b005b34801561012557600080fd5b5061012e610388565b60405161013b9190610bd5565b60405180910390f35b34801561015057600080fd5b5061012e61038e565b34801561016557600080fd5b5061012e610394565b61011761039a565b34801561018257600080fd5b5061012e61058a565b34801561019757600080fd5b5061012e610590565b3480156101ac57600080fd5b506101c06101bb3660046107a8565b610596565b60405161013b91906108cd565b3480156101d957600080fd5b5061012e6101e8366004610785565b6105d4565b3480156101f957600080fd5b506101c06105ef565b34801561020e57600080fd5b5061012e61021d366004610785565b6105fe565b34801561022e57600080fd5b5061012e610619565b3390565b6001600160a01b0381166000908152600260205260409020546102795760405162461bcd60e51b815260040161027090610947565b60405180910390fd5b6000600154476102899190610bde565b6001600160a01b038316600090815260036020908152604080832054835460029093529083205493945091926102bf9085610c16565b6102c99190610bf6565b6102d39190610c35565b9050806102f25760405162461bcd60e51b815260040161027090610abb565b6001600160a01b038316600090815260036020526040902054610316908290610bde565b6001600160a01b03841660009081526003602052604090205560015461033d908290610bde565b60015561034a838261061f565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056838260405161037b9291906108e1565b60405180910390a1505050565b60085481565b60005490565b60095481565b6009544210156103bc5760405162461bcd60e51b81526004016102709061098d565b60075434146103dd5760405162461bcd60e51b815260040161027090610a2f565b600854600654106104005760405162461bcd60e51b815260040161027090610b06565b60006040518060600160405280600081526020016402540be3ff81526020016000815250905060006040518060a00160405280838152602001306001600160a01b03168152602001336001600160a01b0316815260200160065460016104669190610bde565b8152602001604051806020016040528060008152508152509050600061048b826106c0565b905060006040518060600160405280838152602001600067ffffffffffffffff8111156104c857634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156104f1578160200160208202803683370190505b5081526040805160208181018352600082529092019190915260055490516319a1411560e31b81529192506001600160a01b03169063cd0a08a89061053c9086908590600401610b4d565b600060405180830381600087803b15801561055657600080fd5b505af115801561056a573d6000803e3d6000fd5b50506006805492509050600061057f83610c4c565b919050555050505050565b60075481565b60065481565b6000600482815481106105b957634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b6001600160a01b031660009081526003602052604090205490565b6005546001600160a01b031681565b6001600160a01b031660009081526002602052604090205490565b60015490565b8047101561063f5760405162461bcd60e51b815260040161027090610a84565b6000826001600160a01b031682604051610658906108ca565b60006040518083038185875af1925050503d8060008114610695576040519150601f19603f3d011682016040523d82523d6000602084013e61069a565b606091505b50509050806106bb5760405162461bcd60e51b8152600401610270906109d2565b505050565b60006040518060c00160405280609a8152602001610c96609a9139805190602001206106ef836000015161073c565b83602001518460400151856060015186608001518051906020012060405160200161071f969594939291906108fa565b604051602081830303815290604052805190602001209050919050565b600060405160200161074d9061087b565b6040516020818303038152906040528051906020012082600001518360200151846040015160405160200161071f949392919061092c565b600060208284031215610796578081fd5b81356107a181610c7d565b9392505050565b6000602082840312156107b9578081fd5b5035919050565b60008151808452815b818110156107e5576020818501810151868301820152016107c9565b818111156107f65782602083870101525b50601f01601f19169290920160200192915050565b6000606083018251845260208084015160608287015282815180855260808801915083830194508592505b808310156108565784518252938301936001929092019190830190610836565b5060408601519350868103604088015261087081856107c0565b979650505050505050565b7f5365637572697479446174612875696e743235362076616c696446726f6d2c7581527f696e743235362076616c6964546f2c75696e743235362073616c7429000000006020820152603c0190565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b95865260208601949094526001600160a01b03928316604086015291166060840152608083015260a082015260c00190565b93845260208401929092526040830152606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b60208082526025908201527f53656c6c61626c65577261707065723a2073616c6520686173206e6f74207374604082015264185c9d195960da1b606082015260800190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b60208082526035908201527f53656c6c61626c65577261707065723a206d73672076616c7565206d7573742060408201527462652073616d65206173206d696e7420707269636560581b606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526027908201527f53656c6c61626c65577261707065723a2073616c652068617320616c726561646040820152661e48195b99195960ca1b606082015260800190565b600060408252835180516040840152602081015160608401526040810151608084015250602084015160018060a01b0380821660a08501528060408701511660c08501525050606084015160e0830152608084015160e0610100840152610bb86101208401826107c0565b90508281036020840152610bcc818561080b565b95945050505050565b90815260200190565b60008219821115610bf157610bf1610c67565b500190565b600082610c1157634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610c3057610c30610c67565b500290565b600082821015610c4757610c47610c67565b500390565b6000600019821415610c6057610c60610c67565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610c9257600080fd5b5056fe4d696e744552433732314461746128536563757269747944617461207365637572697479446174612c61646472657373206d696e7465722c6164647265737320746f2c75696e7432353620746f6b656e49642c62797465732064617461295365637572697479446174612875696e743235362076616c696446726f6d2c75696e743235362076616c6964546f2c75696e743235362073616c7429a264697066735822122063d65756b38c08b6f5384e06893516e74c92f9523a956c63e95e18c18fa7ac5c64736f6c63430008000033000000000000000000000000e345108cd5fe2586ac95c90a297b387a1ebde0ab000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000620b335000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000200000000000000000000000045f6ba345898d06364eb2a7a5f2c5f38c68da31b00000000000000000000000084e9445f43995b0c6a4d4c1d40bb123571c2eb06000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000003cf0000000000000000000000000000000000000000000000000000000000000019
Deployed Bytecode
0x6080604052600436106100ab5760003560e01c80636e422831116100645780636e4228311461018b5780638b83209b146101a05780639852595c146101cd5780639cf0772d146101ed578063ce7c2ac214610202578063e33b7de314610222576100f2565b806319165587146100f757806319d1997a146101195780633a98ef39146101445780633c276d8614610159578063457100741461016e5780636817c76c14610176576100f2565b366100f2577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706100d9610237565b346040516100e89291906108e1565b60405180910390a1005b600080fd5b34801561010357600080fd5b50610117610112366004610785565b61023b565b005b34801561012557600080fd5b5061012e610388565b60405161013b9190610bd5565b60405180910390f35b34801561015057600080fd5b5061012e61038e565b34801561016557600080fd5b5061012e610394565b61011761039a565b34801561018257600080fd5b5061012e61058a565b34801561019757600080fd5b5061012e610590565b3480156101ac57600080fd5b506101c06101bb3660046107a8565b610596565b60405161013b91906108cd565b3480156101d957600080fd5b5061012e6101e8366004610785565b6105d4565b3480156101f957600080fd5b506101c06105ef565b34801561020e57600080fd5b5061012e61021d366004610785565b6105fe565b34801561022e57600080fd5b5061012e610619565b3390565b6001600160a01b0381166000908152600260205260409020546102795760405162461bcd60e51b815260040161027090610947565b60405180910390fd5b6000600154476102899190610bde565b6001600160a01b038316600090815260036020908152604080832054835460029093529083205493945091926102bf9085610c16565b6102c99190610bf6565b6102d39190610c35565b9050806102f25760405162461bcd60e51b815260040161027090610abb565b6001600160a01b038316600090815260036020526040902054610316908290610bde565b6001600160a01b03841660009081526003602052604090205560015461033d908290610bde565b60015561034a838261061f565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056838260405161037b9291906108e1565b60405180910390a1505050565b60085481565b60005490565b60095481565b6009544210156103bc5760405162461bcd60e51b81526004016102709061098d565b60075434146103dd5760405162461bcd60e51b815260040161027090610a2f565b600854600654106104005760405162461bcd60e51b815260040161027090610b06565b60006040518060600160405280600081526020016402540be3ff81526020016000815250905060006040518060a00160405280838152602001306001600160a01b03168152602001336001600160a01b0316815260200160065460016104669190610bde565b8152602001604051806020016040528060008152508152509050600061048b826106c0565b905060006040518060600160405280838152602001600067ffffffffffffffff8111156104c857634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156104f1578160200160208202803683370190505b5081526040805160208181018352600082529092019190915260055490516319a1411560e31b81529192506001600160a01b03169063cd0a08a89061053c9086908590600401610b4d565b600060405180830381600087803b15801561055657600080fd5b505af115801561056a573d6000803e3d6000fd5b50506006805492509050600061057f83610c4c565b919050555050505050565b60075481565b60065481565b6000600482815481106105b957634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b6001600160a01b031660009081526003602052604090205490565b6005546001600160a01b031681565b6001600160a01b031660009081526002602052604090205490565b60015490565b8047101561063f5760405162461bcd60e51b815260040161027090610a84565b6000826001600160a01b031682604051610658906108ca565b60006040518083038185875af1925050503d8060008114610695576040519150601f19603f3d011682016040523d82523d6000602084013e61069a565b606091505b50509050806106bb5760405162461bcd60e51b8152600401610270906109d2565b505050565b60006040518060c00160405280609a8152602001610c96609a9139805190602001206106ef836000015161073c565b83602001518460400151856060015186608001518051906020012060405160200161071f969594939291906108fa565b604051602081830303815290604052805190602001209050919050565b600060405160200161074d9061087b565b6040516020818303038152906040528051906020012082600001518360200151846040015160405160200161071f949392919061092c565b600060208284031215610796578081fd5b81356107a181610c7d565b9392505050565b6000602082840312156107b9578081fd5b5035919050565b60008151808452815b818110156107e5576020818501810151868301820152016107c9565b818111156107f65782602083870101525b50601f01601f19169290920160200192915050565b6000606083018251845260208084015160608287015282815180855260808801915083830194508592505b808310156108565784518252938301936001929092019190830190610836565b5060408601519350868103604088015261087081856107c0565b979650505050505050565b7f5365637572697479446174612875696e743235362076616c696446726f6d2c7581527f696e743235362076616c6964546f2c75696e743235362073616c7429000000006020820152603c0190565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b95865260208601949094526001600160a01b03928316604086015291166060840152608083015260a082015260c00190565b93845260208401929092526040830152606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b60208082526025908201527f53656c6c61626c65577261707065723a2073616c6520686173206e6f74207374604082015264185c9d195960da1b606082015260800190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b60208082526035908201527f53656c6c61626c65577261707065723a206d73672076616c7565206d7573742060408201527462652073616d65206173206d696e7420707269636560581b606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526027908201527f53656c6c61626c65577261707065723a2073616c652068617320616c726561646040820152661e48195b99195960ca1b606082015260800190565b600060408252835180516040840152602081015160608401526040810151608084015250602084015160018060a01b0380821660a08501528060408701511660c08501525050606084015160e0830152608084015160e0610100840152610bb86101208401826107c0565b90508281036020840152610bcc818561080b565b95945050505050565b90815260200190565b60008219821115610bf157610bf1610c67565b500190565b600082610c1157634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610c3057610c30610c67565b500290565b600082821015610c4757610c47610c67565b500390565b6000600019821415610c6057610c60610c67565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610c9257600080fd5b5056fe4d696e744552433732314461746128536563757269747944617461207365637572697479446174612c61646472657373206d696e7465722c6164647265737320746f2c75696e7432353620746f6b656e49642c62797465732064617461295365637572697479446174612875696e743235362076616c696446726f6d2c75696e743235362076616c6964546f2c75696e743235362073616c7429a264697066735822122063d65756b38c08b6f5384e06893516e74c92f9523a956c63e95e18c18fa7ac5c64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e345108cd5fe2586ac95c90a297b387a1ebde0ab000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000620b335000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000200000000000000000000000045f6ba345898d06364eb2a7a5f2c5f38c68da31b00000000000000000000000084e9445f43995b0c6a4d4c1d40bb123571c2eb06000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000003cf0000000000000000000000000000000000000000000000000000000000000019
-----Decoded View---------------
Arg [0] : _chocomintERC721Address (address): 0xE345108cD5Fe2586AC95C90A297B387A1EbdE0aB
Arg [1] : _mintPrice (uint256): 80000000000000000
Arg [2] : _supplyLimit (uint256): 1000
Arg [3] : _saleStartTimestamp (uint256): 1644901200
Arg [4] : _payees (address[]): 0x45F6BA345898d06364eB2a7a5F2C5F38c68Da31B,0x84E9445f43995b0C6a4D4C1d40bb123571c2Eb06
Arg [5] : _shares (uint256[]): 975,25
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 000000000000000000000000e345108cd5fe2586ac95c90a297b387a1ebde0ab
Arg [1] : 000000000000000000000000000000000000000000000000011c37937e080000
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [3] : 00000000000000000000000000000000000000000000000000000000620b3350
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 00000000000000000000000045f6ba345898d06364eb2a7a5f2c5f38c68da31b
Arg [8] : 00000000000000000000000084e9445f43995b0c6a4d4c1d40bb123571c2eb06
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [10] : 00000000000000000000000000000000000000000000000000000000000003cf
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000019
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.