¡El código fuente de este contrato está verificado!
Metadatos del Contrato
Compilador
0.8.7+commit.e28d00a7
Idioma
Solidity
Código Fuente del Contrato
Archivo 1 de 29: Address.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)pragmasolidity ^0.8.1;/**
* @dev Collection of functions related to the address type
*/libraryAddress{
/**
* @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
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/functionisContract(address account) internalviewreturns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0// for contracts in construction, since the code is only stored at the end// of the constructor execution.return account.code.length>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].
*/functionsendValue(addresspayable 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._
*/functionfunctionCall(address target, bytesmemory data) internalreturns (bytesmemory) {
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._
*/functionfunctionCall(address target,
bytesmemory data,
stringmemory errorMessage
) internalreturns (bytesmemory) {
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._
*/functionfunctionCallWithValue(address target,
bytesmemory data,
uint256 value
) internalreturns (bytesmemory) {
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._
*/functionfunctionCallWithValue(address target,
bytesmemory data,
uint256 value,
stringmemory errorMessage
) internalreturns (bytesmemory) {
require(address(this).balance>= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytesmemory 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._
*/functionfunctionStaticCall(address target, bytesmemory data) internalviewreturns (bytesmemory) {
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._
*/functionfunctionStaticCall(address target,
bytesmemory data,
stringmemory errorMessage
) internalviewreturns (bytesmemory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytesmemory 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._
*/functionfunctionDelegateCall(address target, bytesmemory data) internalreturns (bytesmemory) {
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._
*/functionfunctionDelegateCall(address target,
bytesmemory data,
stringmemory errorMessage
) internalreturns (bytesmemory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytesmemory 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._
*/functionverifyCallResult(bool success,
bytesmemory returndata,
stringmemory errorMessage
) internalpurereturns (bytesmemory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if presentif (returndata.length>0) {
// The easiest way to bubble the revert reason is using memory via assemblyassembly {
let returndata_size :=mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragmasolidity ^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.
*/abstractcontractContext{
function_msgSender() internalviewvirtualreturns (address) {
returnmsg.sender;
}
function_msgData() internalviewvirtualreturns (bytescalldata) {
returnmsg.data;
}
}
Código Fuente del Contrato
Archivo 4 de 29: Counters.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)pragmasolidity ^0.8.0;/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/libraryCounters{
structCounter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add// this feature: see https://github.com/ethereum/solidity/issues/4637uint256 _value; // default: 0
}
functioncurrent(Counter storage counter) internalviewreturns (uint256) {
return counter._value;
}
functionincrement(Counter storage counter) internal{
unchecked {
counter._value +=1;
}
}
functiondecrement(Counter storage counter) internal{
uint256 value = counter._value;
require(value >0, "Counter: decrement overflow");
unchecked {
counter._value = value -1;
}
}
functionreset(Counter storage counter) internal{
counter._value =0;
}
}
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/utils/ERC1155Holder.sol)pragmasolidity ^0.8.0;import"./ERC1155Receiver.sol";
/**
* Simple implementation of `ERC1155Receiver` that will allow a contract to hold ERC1155 tokens.
*
* IMPORTANT: When inheriting this contract, you must include a way to use the received tokens, otherwise they will be
* stuck.
*
* @dev _Available since v3.1._
*/contractERC1155HolderisERC1155Receiver{
functiononERC1155Received(address,
address,
uint256,
uint256,
bytesmemory) publicvirtualoverridereturns (bytes4) {
returnthis.onERC1155Received.selector;
}
functiononERC1155BatchReceived(address,
address,
uint256[] memory,
uint256[] memory,
bytesmemory) publicvirtualoverridereturns (bytes4) {
returnthis.onERC1155BatchReceived.selector;
}
}
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)pragmasolidity ^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.
*/abstractcontractERC165isIERC165{
/**
* @dev See {IERC165-supportsInterface}.
*/functionsupportsInterface(bytes4 interfaceId) publicviewvirtualoverridereturns (bool) {
return interfaceId ==type(IERC165).interfaceId;
}
}
Código Fuente del Contrato
Archivo 9 de 29: ERC165Storage.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165Storage.sol)pragmasolidity ^0.8.0;import"./ERC165.sol";
/**
* @dev Storage based implementation of the {IERC165} interface.
*
* Contracts may inherit from this and call {_registerInterface} to declare
* their support of an interface.
*/abstractcontractERC165StorageisERC165{
/**
* @dev Mapping of interface ids to whether or not it's supported.
*/mapping(bytes4=>bool) private _supportedInterfaces;
/**
* @dev See {IERC165-supportsInterface}.
*/functionsupportsInterface(bytes4 interfaceId) publicviewvirtualoverridereturns (bool) {
returnsuper.supportsInterface(interfaceId) || _supportedInterfaces[interfaceId];
}
/**
* @dev Registers the contract as an implementer of the interface defined by
* `interfaceId`. Support of the actual ERC165 interface is automatic and
* registering its interface id is not required.
*
* See {IERC165-supportsInterface}.
*
* Requirements:
*
* - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
*/function_registerInterface(bytes4 interfaceId) internalvirtual{
require(interfaceId !=0xffffffff, "ERC165: invalid interface id");
_supportedInterfaces[interfaceId] =true;
}
}
Código Fuente del Contrato
Archivo 10 de 29: ERC721.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)pragmasolidity ^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}.
*/contractERC721isContext, ERC165, IERC721, IERC721Metadata{
usingAddressforaddress;
usingStringsforuint256;
// Token namestringprivate _name;
// Token symbolstringprivate _symbol;
// Mapping from token ID to owner addressmapping(uint256=>address) private _owners;
// Mapping owner address to token countmapping(address=>uint256) private _balances;
// Mapping from token ID to approved addressmapping(uint256=>address) private _tokenApprovals;
// Mapping from owner to operator approvalsmapping(address=>mapping(address=>bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/constructor(stringmemory name_, stringmemory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/functionsupportsInterface(bytes4 interfaceId) publicviewvirtualoverride(ERC165, IERC165) returns (bool) {
return
interfaceId ==type(IERC721).interfaceId||
interfaceId ==type(IERC721Metadata).interfaceId||super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/functionbalanceOf(address owner) publicviewvirtualoverridereturns (uint256) {
require(owner !=address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/functionownerOf(uint256 tokenId) publicviewvirtualoverridereturns (address) {
address owner = _owners[tokenId];
require(owner !=address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/functionname() publicviewvirtualoverridereturns (stringmemory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/functionsymbol() publicviewvirtualoverridereturns (stringmemory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/functiontokenURI(uint256 tokenId) publicviewvirtualoverridereturns (stringmemory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
stringmemory baseURI = _baseURI();
returnbytes(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 overridden in child contracts.
*/function_baseURI() internalviewvirtualreturns (stringmemory) {
return"";
}
/**
* @dev See {IERC721-approve}.
*/functionapprove(address to, uint256 tokenId) publicvirtualoverride{
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}.
*/functiongetApproved(uint256 tokenId) publicviewvirtualoverridereturns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/functionsetApprovalForAll(address operator, bool approved) publicvirtualoverride{
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/functionisApprovedForAll(address owner, address operator) publicviewvirtualoverridereturns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/functiontransferFrom(addressfrom,
address to,
uint256 tokenId
) publicvirtualoverride{
//solhint-disable-next-line max-line-lengthrequire(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 tokenId
) publicvirtualoverride{
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 tokenId,
bytesmemory _data
) publicvirtualoverride{
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(addressfrom,
address to,
uint256 tokenId,
bytesmemory _data
) internalvirtual{
_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) internalviewvirtualreturns (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) internalviewvirtualreturns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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) internalvirtual{
_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,
bytesmemory _data
) internalvirtual{
_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) internalvirtual{
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);
_afterTokenTransfer(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) internalvirtual{
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);
_afterTokenTransfer(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(addressfrom,
address to,
uint256 tokenId
) internalvirtual{
require(ERC721.ownerOf(tokenId) ==from, "ERC721: transfer from incorrect owner");
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);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/function_approve(address to, uint256 tokenId) internalvirtual{
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/function_setApprovalForAll(address owner,
address operator,
bool approved
) internalvirtual{
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @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(addressfrom,
address to,
uint256 tokenId,
bytesmemory _data
) privatereturns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytesmemory reason) {
if (reason.length==0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
returntrue;
}
}
/**
* @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(addressfrom,
address to,
uint256 tokenId
) internalvirtual{}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/function_afterTokenTransfer(addressfrom,
address to,
uint256 tokenId
) internalvirtual{}
}
Código Fuente del Contrato
Archivo 11 de 29: ERC721Burnable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)pragmasolidity ^0.8.0;import"../ERC721.sol";
import"../../../utils/Context.sol";
/**
* @title ERC721 Burnable Token
* @dev ERC721 Token that can be irreversibly burned (destroyed).
*/abstractcontractERC721BurnableisContext, ERC721{
/**
* @dev Burns `tokenId`. See {ERC721-_burn}.
*
* Requirements:
*
* - The caller must own `tokenId` or be an approved operator.
*/functionburn(uint256 tokenId) publicvirtual{
//solhint-disable-next-line max-line-lengthrequire(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
_burn(tokenId);
}
}
Código Fuente del Contrato
Archivo 12 de 29: ERC721Holder.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/utils/ERC721Holder.sol)pragmasolidity ^0.8.0;import"../IERC721Receiver.sol";
/**
* @dev Implementation of the {IERC721Receiver} interface.
*
* Accepts all token transfers.
* Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.
*/contractERC721HolderisIERC721Receiver{
/**
* @dev See {IERC721Receiver-onERC721Received}.
*
* Always returns `IERC721Receiver.onERC721Received.selector`.
*/functiononERC721Received(address,
address,
uint256,
bytesmemory) publicvirtualoverridereturns (bytes4) {
returnthis.onERC721Received.selector;
}
}
Código Fuente del Contrato
Archivo 13 de 29: ERC721LimitedSupply.sol
// SPDX-License-Identifier: MITpragmasolidity ^0.8.0;import"@openzeppelin/contracts/utils/Counters.sol";
/**
* @title A token tracker that limits the token supply and increments token IDs on each new mint.
* @author
*/abstractcontractERC721LimitedSupply{
usingCountersforCounters.Counter;
/**
* @dev Emitted when the supply of this collection changes
*/eventSupplyChanged(uint256indexed supply);
/**
* @dev Keeps track of how many we have minted
*/
Counters.Counter private _tokenCount;
/**
* @dev The maximum count of tokens this token tracker will hold.
*/uint256private _totalSupply;
/**
* @dev Instanciate the contract
* @param totalSupply_ how many tokens this collection should hold
*/constructor(uint256 totalSupply_) {
_totalSupply = totalSupply_;
}
/**
* @notice Get the max Supply
* @return the maximum token count
*/functiontotalSupply() publicviewvirtualreturns (uint256) {
return _totalSupply;
}
/**
* @notice Get the current token count
* @return the created token count
*/functiontokenCount() publicviewreturns (uint256) {
return _tokenCount.current();
}
/**
* @notice Check whether tokens are still available
* @return the available token count
*/functionavailableTokenCount() publicviewreturns (uint256) {
return totalSupply() - tokenCount();
}
/**
* @dev Increment the token count and fetch the latest count
* @return the next token id
*/function_nextToken() internalvirtualreturns (uint256) {
uint256 token = _tokenCount.current();
_tokenCount.increment();
return token;
}
/**
* @dev Check whether another token is still available
*/modifierensureAvailability() {
require(availableTokenCount() >0, "No more tokens available");
_;
}
/**
* @dev Check whether tokens are still available
* @param amount Check whether number of tokens are still available
*/modifierensureAvailabilityFor(uint256 amount) {
require(availableTokenCount() >= amount, "Requested number of tokens not available");
_;
}
/**
* @notice Update the supply for the collection
* @dev create additional token supply for this collection.
* @param _supply the new token supply.
*/function_setSupply(uint256 _supply) internalvirtual{
require(_supply > tokenCount(), "Can't set the supply to less than the current token count");
_totalSupply = _supply;
emit SupplyChanged(totalSupply());
}
}
Código Fuente del Contrato
Archivo 14 de 29: ERC721RandomlyAssignVandalzTierPeriphery.sol
// SPDX-License-Identifier: MITpragmasolidity ^0.8.0;import"./ERC721Extensions/ERC721LimitedSupply.sol";
import { DataTypes } from"./types/DataTypes.sol";
import { Errors } from"./types/Errors.sol";
/**
* @title Randomly assign tokenIDs from a given set of tokens.
*/abstractcontractERC721RandomlyAssignVandalzTierPeripheryisERC721LimitedSupply{
usingCountersforCounters.Counter;
/**
* @dev token id of first token
*/uint256public startFrom;
/**
* @dev Used for random index assignment
*/mapping(uint256=>mapping(uint256=>uint256)) private tokenMatrix;
/**
* @notice
* @dev
*/
DataTypes.Tier[] public tiers;
/**
* @notice Instanciate the contract
* @param _totalSupply how many tokens this collection should hold
*/constructor(uint256 _totalSupply, uint256 _startFrom) ERC721LimitedSupply(_totalSupply) {
startFrom = _startFrom;
}
/**
* @notice Get the current token count of give tier
* @param _tierIndex the tier index
* @return the created token count of given tier
*/functiontierWiseTokenCount(uint256 _tierIndex) publicviewreturns (uint256) {
return tiers[_tierIndex].tokenCount.current();
}
/**
* @notice Check whether tokens are still available for a given tier
* @param _tierIndex the tier index
* @return the available token count for given tier
*/functionavailableTierTokenCount(uint256 _tierIndex) publicviewreturns (uint256) {
return tiers[_tierIndex].pieces - tiers[_tierIndex].tokenCount.current();
}
function_updateTierTokenCount(uint256 _nextTokenId) internal{
for (uint256 _i; _i < tiers.length; _i++) {
if (_nextTokenId >= tiers[_i].from && _nextTokenId <= tiers[_i].to) {
// Increment tier token count
tiers[_i].tokenCount.increment();
break;
}
}
}
/**
* @notice
* @dev
*/function_updateTokenMatrix(uint256[] memory _tierIndexes,
uint256[] memory _offsets,
uint256[] memory _tokenIndexes
) internal{
uint256 _tierIndexesLen = _tierIndexes.length;
uint256 _offsetsLen = _offsets.length;
uint256 _tokenIndexesLen = _tokenIndexes.length;
require(_tierIndexesLen == _offsetsLen && _offsetsLen == _tokenIndexesLen, "Length mismatch");
for (uint256 _i; _i < _tierIndexesLen; _i++) {
// require(tokenMatrix[_tierIndexes[_i]][_offsets[_i]] == 0, "Already initialized");
tokenMatrix[_tierIndexes[_i]][_offsets[_i]] = _tokenIndexes[_i];
tiers[_tierIndexes[_i]].tokenCount.increment();
}
}
/**
* @notice Get the next token ID from given tier
* @dev Randomly gets a new token ID from given tier and keeps track of the ones that are still available.
* @return the next token ID from given tier
*/function_nextTokenFromTier(uint256 _randomNumber, uint256 _tierIndex)
internalensureAvailabilityreturns (uint256)
{
if (availableTierTokenCount(_tierIndex) ==0) {
revert Errors.ERC721RandomlyAssignVandalzTier__UnavailableTierTokens(_tierIndex);
}
uint256 _nextTokenId =
_internalNextToken(
_randomNumber,
_tierIndex,
tiers[_tierIndex].pieces - tiers[_tierIndex].tokenCount.current()
) + tiers[_tierIndex].from;
// Increment tier token count
tiers[_tierIndex].tokenCount.increment();
return _nextTokenId;
}
function_internalNextToken(uint256 _randomNumber,
uint256 _tierIndex,
uint256 _maxIndex
) internalreturns (uint256) {
uint256 _value;
_randomNumber = _randomNumber % _maxIndex;
if (tokenMatrix[_tierIndex][_randomNumber] ==0) {
// If this matrix position is empty, set the value to the generated random number.
_value = _randomNumber;
} else {
// Otherwise, use the previously stored number from the matrix.
_value = tokenMatrix[_tierIndex][_randomNumber];
}
// If the last available tokenID is still unused...if (tokenMatrix[_tierIndex][_maxIndex -1] ==0) {
// ...store that ID in the current matrix position.
tokenMatrix[_tierIndex][_randomNumber] = _maxIndex -1;
} else {
// ...otherwise copy over the stored number to the current matrix position.
tokenMatrix[_tierIndex][_randomNumber] = tokenMatrix[_tierIndex][_maxIndex -1];
}
// Increment countssuper._nextToken();
return _value;
}
function_setTier(uint256 _tierIndex,
uint256 _from,
uint256 _to
) internalvirtual{
require(_to - _from >= tiers[_tierIndex].pieces, "ERC721RandomlyAssignVandalzTier : misaligned pieces");
tiers[_tierIndex].from = _from;
tiers[_tierIndex].to = _to;
tiers[_tierIndex].pieces = _to - _from +1;
}
}
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)pragmasolidity ^0.8.0;import"../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC1155 compliant contract, as defined in the
* https://eips.ethereum.org/EIPS/eip-1155[EIP].
*
* _Available since v3.1._
*/interfaceIERC1155isIERC165{
/**
* @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
*/eventTransferSingle(addressindexed operator, addressindexedfrom, addressindexed to, uint256 id, uint256 value);
/**
* @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
* transfers.
*/eventTransferBatch(addressindexed operator,
addressindexedfrom,
addressindexed to,
uint256[] ids,
uint256[] values
);
/**
* @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
* `approved`.
*/eventApprovalForAll(addressindexed account, addressindexed operator, bool approved);
/**
* @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
*
* If an {URI} event was emitted for `id`, the standard
* https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
* returned by {IERC1155MetadataURI-uri}.
*/eventURI(string value, uint256indexed id);
/**
* @dev Returns the amount of tokens of token type `id` owned by `account`.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/functionbalanceOf(address account, uint256 id) externalviewreturns (uint256);
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/functionbalanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
externalviewreturns (uint256[] memory);
/**
* @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
*
* Emits an {ApprovalForAll} event.
*
* Requirements:
*
* - `operator` cannot be the caller.
*/functionsetApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
*
* See {setApprovalForAll}.
*/functionisApprovedForAll(address account, address operator) externalviewreturns (bool);
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 id,
uint256 amount,
bytescalldata data
) external;
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/functionsafeBatchTransferFrom(addressfrom,
address to,
uint256[] calldata ids,
uint256[] calldata amounts,
bytescalldata data
) external;
}
Código Fuente del Contrato
Archivo 17 de 29: IERC1155Receiver.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)pragmasolidity ^0.8.0;import"../../utils/introspection/IERC165.sol";
/**
* @dev _Available since v3.1._
*/interfaceIERC1155ReceiverisIERC165{
/**
* @dev Handles the receipt of a single ERC1155 token type. This function is
* called at the end of a `safeTransferFrom` after the balance has been updated.
*
* NOTE: To accept the transfer, this must return
* `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
* (i.e. 0xf23a6e61, or its own function selector).
*
* @param operator The address which initiated the transfer (i.e. msg.sender)
* @param from The address which previously owned the token
* @param id The ID of the token being transferred
* @param value The amount of tokens being transferred
* @param data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
*/functiononERC1155Received(address operator,
addressfrom,
uint256 id,
uint256 value,
bytescalldata data
) externalreturns (bytes4);
/**
* @dev Handles the receipt of a multiple ERC1155 token types. This function
* is called at the end of a `safeBatchTransferFrom` after the balances have
* been updated.
*
* NOTE: To accept the transfer(s), this must return
* `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
* (i.e. 0xbc197c81, or its own function selector).
*
* @param operator The address which initiated the batch transfer (i.e. msg.sender)
* @param from The address which previously owned the token
* @param ids An array containing ids of each token being transferred (order and length must match values array)
* @param values An array containing amounts of each token being transferred (order and length must match ids array)
* @param data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
*/functiononERC1155BatchReceived(address operator,
addressfrom,
uint256[] calldata ids,
uint256[] calldata values,
bytescalldata data
) externalreturns (bytes4);
}
Código Fuente del Contrato
Archivo 18 de 29: IERC165.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)pragmasolidity ^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}.
*/interfaceIERC165{
/**
* @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.
*/functionsupportsInterface(bytes4 interfaceId) externalviewreturns (bool);
}
Código Fuente del Contrato
Archivo 19 de 29: IERC20.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)pragmasolidity ^0.8.0;/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/interfaceIERC20{
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/eventTransfer(addressindexedfrom, addressindexed 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.
*/eventApproval(addressindexed owner, addressindexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/functiontotalSupply() externalviewreturns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/functionbalanceOf(address account) externalviewreturns (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.
*/functiontransfer(address to, uint256 amount) externalreturns (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.
*/functionallowance(address owner, address spender) externalviewreturns (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.
*/functionapprove(address spender, uint256 amount) externalreturns (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.
*/functiontransferFrom(addressfrom,
address to,
uint256 amount
) externalreturns (bool);
}
Código Fuente del Contrato
Archivo 20 de 29: IERC721.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)pragmasolidity ^0.8.0;import"../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/interfaceIERC721isIERC165{
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/eventTransfer(addressindexedfrom, addressindexed to, uint256indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/eventApproval(addressindexed owner, addressindexed approved, uint256indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/eventApprovalForAll(addressindexed owner, addressindexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/functionbalanceOf(address owner) externalviewreturns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/functionownerOf(uint256 tokenId) externalviewreturns (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.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 tokenId,
bytescalldata 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 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.
*/functionsafeTransferFrom(addressfrom,
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.
*/functiontransferFrom(addressfrom,
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.
*/functionapprove(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.
*/functionsetApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/functiongetApproved(uint256 tokenId) externalviewreturns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/functionisApprovedForAll(address owner, address operator) externalviewreturns (bool);
}
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)pragmasolidity ^0.8.0;/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/interfaceIERC721Receiver{
/**
* @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 `IERC721Receiver.onERC721Received.selector`.
*/functiononERC721Received(address operator,
addressfrom,
uint256 tokenId,
bytescalldata data
) externalreturns (bytes4);
}
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)pragmasolidity ^0.8.0;/**
* @dev These functions deal with verification of Merkle Trees 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.
*/libraryMerkleProof{
/**
* @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.
*/functionverify(bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internalpurereturns (bool) {
return processProof(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._
*/functionprocessProof(bytes32[] memory proof, bytes32 leaf) internalpurereturns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i =0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = _efficientHash(computedHash, proofElement);
} else {
// Hash(current element of the proof + current computed hash)
computedHash = _efficientHash(proofElement, computedHash);
}
}
return computedHash;
}
function_efficientHash(bytes32 a, bytes32 b) privatepurereturns (bytes32 value) {
assembly {
mstore(0x00, a)
mstore(0x20, b)
value :=keccak256(0x00, 0x40)
}
}
}
Código Fuente del Contrato
Archivo 25 de 29: Ownable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)pragmasolidity ^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.
*/abstractcontractOwnableisContext{
addressprivate _owner;
eventOwnershipTransferred(addressindexed previousOwner, addressindexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/functionowner() publicviewvirtualreturns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/modifieronlyOwner() {
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.
*/functionrenounceOwnership() publicvirtualonlyOwner{
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/functiontransferOwnership(address newOwner) publicvirtualonlyOwner{
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) internalvirtual{
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
Código Fuente del Contrato
Archivo 26 de 29: Strings.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)pragmasolidity ^0.8.0;/**
* @dev String operations.
*/libraryStrings{
bytes16privateconstant _HEX_SYMBOLS ="0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/functiontoString(uint256 value) internalpurereturns (stringmemory) {
// Inspired by OraclizeAPI's implementation - MIT licence// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.solif (value ==0) {
return"0";
}
uint256 temp = value;
uint256 digits;
while (temp !=0) {
digits++;
temp /=10;
}
bytesmemory buffer =newbytes(digits);
while (value !=0) {
digits -=1;
buffer[digits] =bytes1(uint8(48+uint256(value %10)));
value /=10;
}
returnstring(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/functiontoHexString(uint256 value) internalpurereturns (stringmemory) {
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.
*/functiontoHexString(uint256 value, uint256 length) internalpurereturns (stringmemory) {
bytesmemory buffer =newbytes(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");
returnstring(buffer);
}
}
Código Fuente del Contrato
Archivo 27 de 29: VRFConsumerBaseV2.sol
// SPDX-License-Identifier: MITpragmasolidity ^0.8.4;/** ****************************************************************************
* @notice Interface for contracts using VRF randomness
* *****************************************************************************
* @dev PURPOSE
*
* @dev Reggie the Random Oracle (not his real job) wants to provide randomness
* @dev to Vera the verifier in such a way that Vera can be sure he's not
* @dev making his output up to suit himself. Reggie provides Vera a public key
* @dev to which he knows the secret key. Each time Vera provides a seed to
* @dev Reggie, he gives back a value which is computed completely
* @dev deterministically from the seed and the secret key.
*
* @dev Reggie provides a proof by which Vera can verify that the output was
* @dev correctly computed once Reggie tells it to her, but without that proof,
* @dev the output is indistinguishable to her from a uniform random sample
* @dev from the output space.
*
* @dev The purpose of this contract is to make it easy for unrelated contracts
* @dev to talk to Vera the verifier about the work Reggie is doing, to provide
* @dev simple access to a verifiable source of randomness. It ensures 2 things:
* @dev 1. The fulfillment came from the VRFCoordinator
* @dev 2. The consumer contract implements fulfillRandomWords.
* *****************************************************************************
* @dev USAGE
*
* @dev Calling contracts must inherit from VRFConsumerBase, and can
* @dev initialize VRFConsumerBase's attributes in their constructor as
* @dev shown:
*
* @dev contract VRFConsumer {
* @dev constructor(<other arguments>, address _vrfCoordinator, address _link)
* @dev VRFConsumerBase(_vrfCoordinator) public {
* @dev <initialization with other arguments goes here>
* @dev }
* @dev }
*
* @dev The oracle will have given you an ID for the VRF keypair they have
* @dev committed to (let's call it keyHash). Create subscription, fund it
* @dev and your consumer contract as a consumer of it (see VRFCoordinatorInterface
* @dev subscription management functions).
* @dev Call requestRandomWords(keyHash, subId, minimumRequestConfirmations,
* @dev callbackGasLimit, numWords),
* @dev see (VRFCoordinatorInterface for a description of the arguments).
*
* @dev Once the VRFCoordinator has received and validated the oracle's response
* @dev to your request, it will call your contract's fulfillRandomWords method.
*
* @dev The randomness argument to fulfillRandomWords is a set of random words
* @dev generated from your requestId and the blockHash of the request.
*
* @dev If your contract could have concurrent requests open, you can use the
* @dev requestId returned from requestRandomWords to track which response is associated
* @dev with which randomness request.
* @dev See "SECURITY CONSIDERATIONS" for principles to keep in mind,
* @dev if your contract could have multiple requests in flight simultaneously.
*
* @dev Colliding `requestId`s are cryptographically impossible as long as seeds
* @dev differ.
*
* *****************************************************************************
* @dev SECURITY CONSIDERATIONS
*
* @dev A method with the ability to call your fulfillRandomness method directly
* @dev could spoof a VRF response with any random value, so it's critical that
* @dev it cannot be directly called by anything other than this base contract
* @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
*
* @dev For your users to trust that your contract's random behavior is free
* @dev from malicious interference, it's best if you can write it so that all
* @dev behaviors implied by a VRF response are executed *during* your
* @dev fulfillRandomness method. If your contract must store the response (or
* @dev anything derived from it) and use it later, you must ensure that any
* @dev user-significant behavior which depends on that stored value cannot be
* @dev manipulated by a subsequent VRF request.
*
* @dev Similarly, both miners and the VRF oracle itself have some influence
* @dev over the order in which VRF responses appear on the blockchain, so if
* @dev your contract could have multiple VRF requests in flight simultaneously,
* @dev you must ensure that the order in which the VRF responses arrive cannot
* @dev be used to manipulate your contract's user-significant behavior.
*
* @dev Since the block hash of the block which contains the requestRandomness
* @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
* @dev miner could, in principle, fork the blockchain to evict the block
* @dev containing the request, forcing the request to be included in a
* @dev different block with a different hash, and therefore a different input
* @dev to the VRF. However, such an attack would incur a substantial economic
* @dev cost. This cost scales with the number of blocks the VRF oracle waits
* @dev until it calls responds to a request. It is for this reason that
* @dev that you can signal to an oracle you'd like them to wait longer before
* @dev responding to the request (however this is not enforced in the contract
* @dev and so remains effective only in the case of unmodified oracle software).
*/abstractcontractVRFConsumerBaseV2{
errorOnlyCoordinatorCanFulfill(address have, address want);
addressprivateimmutable vrfCoordinator;
/**
* @param _vrfCoordinator address of VRFCoordinator contract
*/constructor(address _vrfCoordinator) {
vrfCoordinator = _vrfCoordinator;
}
/**
* @notice fulfillRandomness handles the VRF response. Your contract must
* @notice implement it. See "SECURITY CONSIDERATIONS" above for important
* @notice principles to keep in mind when implementing your fulfillRandomness
* @notice method.
*
* @dev VRFConsumerBaseV2 expects its subcontracts to have a method with this
* @dev signature, and will call it once it has verified the proof
* @dev associated with the randomness. (It is triggered via a call to
* @dev rawFulfillRandomness, below.)
*
* @param requestId The Id initially returned by requestRandomness
* @param randomWords the VRF output expanded to the requested number of words
*/functionfulfillRandomWords(uint256 requestId, uint256[] memory randomWords) internalvirtual;
// rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF// proof. rawFulfillRandomness then calls fulfillRandomness, after validating// the origin of the callfunctionrawFulfillRandomWords(uint256 requestId, uint256[] memory randomWords) external{
if (msg.sender!= vrfCoordinator) {
revert OnlyCoordinatorCanFulfill(msg.sender, vrfCoordinator);
}
fulfillRandomWords(requestId, randomWords);
}
}
Código Fuente del Contrato
Archivo 28 de 29: VRFCoordinatorV2Interface.sol
// SPDX-License-Identifier: MITpragmasolidity ^0.8.0;interfaceVRFCoordinatorV2Interface{
/**
* @notice Get configuration relevant for making requests
* @return minimumRequestConfirmations global min for request confirmations
* @return maxGasLimit global max for request gas limit
* @return s_provingKeyHashes list of registered key hashes
*/functiongetRequestConfig()
externalviewreturns (uint16,
uint32,
bytes32[] memory);
/**
* @notice Request a set of random words.
* @param keyHash - Corresponds to a particular oracle job which uses
* that key for generating the VRF proof. Different keyHash's have different gas price
* ceilings, so you can select a specific one to bound your maximum per request cost.
* @param subId - The ID of the VRF subscription. Must be funded
* with the minimum subscription balance required for the selected keyHash.
* @param minimumRequestConfirmations - How many blocks you'd like the
* oracle to wait before responding to the request. See SECURITY CONSIDERATIONS
* for why you may want to request more. The acceptable range is
* [minimumRequestBlockConfirmations, 200].
* @param callbackGasLimit - How much gas you'd like to receive in your
* fulfillRandomWords callback. Note that gasleft() inside fulfillRandomWords
* may be slightly less than this amount because of gas used calling the function
* (argument decoding etc.), so you may need to request slightly more than you expect
* to have inside fulfillRandomWords. The acceptable range is
* [0, maxGasLimit]
* @param numWords - The number of uint256 random values you'd like to receive
* in your fulfillRandomWords callback. Note these numbers are expanded in a
* secure way by the VRFCoordinator from a single random value supplied by the oracle.
* @return requestId - A unique identifier of the request. Can be used to match
* a request to a response in fulfillRandomWords.
*/functionrequestRandomWords(bytes32 keyHash,
uint64 subId,
uint16 minimumRequestConfirmations,
uint32 callbackGasLimit,
uint32 numWords
) externalreturns (uint256 requestId);
/**
* @notice Create a VRF subscription.
* @return subId - A unique subscription id.
* @dev You can manage the consumer set dynamically with addConsumer/removeConsumer.
* @dev Note to fund the subscription, use transferAndCall. For example
* @dev LINKTOKEN.transferAndCall(
* @dev address(COORDINATOR),
* @dev amount,
* @dev abi.encode(subId));
*/functioncreateSubscription() externalreturns (uint64 subId);
/**
* @notice Get a VRF subscription.
* @param subId - ID of the subscription
* @return balance - LINK balance of the subscription in juels.
* @return reqCount - number of requests for this subscription, determines fee tier.
* @return owner - owner of the subscription.
* @return consumers - list of consumer address which are able to use this subscription.
*/functiongetSubscription(uint64 subId)
externalviewreturns (uint96 balance,
uint64 reqCount,
address owner,
address[] memory consumers
);
/**
* @notice Request subscription owner transfer.
* @param subId - ID of the subscription
* @param newOwner - proposed new owner of the subscription
*/functionrequestSubscriptionOwnerTransfer(uint64 subId, address newOwner) external;
/**
* @notice Request subscription owner transfer.
* @param subId - ID of the subscription
* @dev will revert if original owner of subId has
* not requested that msg.sender become the new owner.
*/functionacceptSubscriptionOwnerTransfer(uint64 subId) external;
/**
* @notice Add a consumer to a VRF subscription.
* @param subId - ID of the subscription
* @param consumer - New consumer which can use the subscription
*/functionaddConsumer(uint64 subId, address consumer) external;
/**
* @notice Remove a consumer from a VRF subscription.
* @param subId - ID of the subscription
* @param consumer - Consumer to remove from the subscription
*/functionremoveConsumer(uint64 subId, address consumer) external;
/**
* @notice Cancel a subscription
* @param subId - ID of the subscription
* @param to - Where to send the remaining LINK to
*/functioncancelSubscription(uint64 subId, address to) external;
}
Código Fuente del Contrato
Archivo 29 de 29: WhIsBeVandalzPeriphery.sol
// SPDX-License-Identifier: MITpragmasolidity ^0.8.7;// interfacesimport { IERC20 } from"@openzeppelin/contracts/token/ERC20/IERC20.sol";
import"@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import { IERC165 } from"@openzeppelin/contracts/utils/introspection/ERC165Storage.sol";
// libraryimport { MerkleProof } from"@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import { Constants } from"./Constants.sol";
import { Ownable } from"@openzeppelin/contracts/access/Ownable.sol";
import { DataTypes } from"./types/DataTypes.sol";
import { Errors } from"./types/Errors.sol";
// contractsimport { ERC721RandomlyAssignVandalzTierPeriphery } from"./ERC721RandomlyAssignVandalzTierPeriphery.sol";
import { ERC721Burnable } from"@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import"@chainlink/contracts/src/v0.8/interfaces/LinkTokenInterface.sol";
import"@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol";
import"@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol";
import { ERC165Storage } from"@openzeppelin/contracts/utils/introspection/ERC165Storage.sol";
import"@openzeppelin/contracts/token/ERC721/ERC721.sol";
import"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol";
interfaceIWhIsBeVandalz{
functioncreatorMint(address _to, uint256[] memory _tokenIds) external;
functionTIERS() externalviewreturns (uint256);
functionrenounceOwnership() external;
functiontransferOwnership(address newOwner) external;
functionsetTier(uint256[] memory _tierIndex,
uint256[] memory _from,
uint256[] memory _to
) external;
functionsetSupply(uint256 _supply) external;
functionreveal() external;
functionsetBaseExtension(stringmemory _newBaseExtension) external;
functionsetBaseURI(stringmemory _newBaseURI) external;
functionsetNotRevealedURI(stringmemory _notRevealedURI) external;
functionwithdrawETH() external;
functiontransferAccidentallyLockedTokens(IERC20 _token, uint256 _amount) external;
functionsetRoyaltyInfo(address $royaltyAddress, uint256 $percentage) external;
}
interfaceIGoodKarmaToken{
functionburnTokenForVandal(address holderAddress) external;
}
structMintDetails {
address collectionAddress;
address beneficiary;
uint256 tokenId;
}
contractWhIsBeVandalzPeripheryisERC721RandomlyAssignVandalzTierPeriphery,
ERC721Holder,
ERC165Storage,
ERC1155Holder,
VRFConsumerBaseV2,
Ownable{
//==Constants==//// bytes4 constants for ERC165bytes4privateconstant _INTERFACE_ID_ERC721 =0x80ac58cd;
bytes4privateconstant _INTERFACE_ID_IERC2981 =0x2a55205a;
bytes4privateconstant _INTERFACE_ID_IERC721Metadata =0x5b5e139f;
bytes4privateconstant _INTERFACE_ID_IERC165 =0x01ffc9a7;
bytes4privateconstant _INTERFACE_ID_IERC1155 =0xf23a6e61;
/**
* @notice
* @dev
*/
VRFCoordinatorV2Interface public COORDINATOR;
/**
* @notice
* @dev
*/
LinkTokenInterface publicimmutable LINKTOKEN;
/**
* @notice
* @dev
*/uint256[] public groupTier15678Indexes;
/**
* @notice
* @dev
*/uint256[] public groupTier135678Indexes;
/**
* @notice
* @dev
*/addresspublic whisbeVandalz;
/**
* @notice
* @dev
*/boolpublic redeemPaused =true;
/**
* @notice
* @dev
*/boolpublic publicMintPaused =true;
/**
* @notice
* @dev
*/boolpublic whitelistState =true;
/**
* @notice
* @dev
*/uint64public s_subscriptionId;
/**
* @notice list of allowlist address hashed
* @dev the merkle root hash allowlist
*/bytes32public merkleRoot;
/**
* @notice
* @dev
*/uint256public publicSalePrice =0.1ether;
/**
* @notice
* @dev
*/uint256public vrnfRequestCounter;
/**
* @notice
* @dev
*/uint256public publicMintTier3Counter;
/**
* @notice
* @dev
*/uint256public publicMintTierGroup15678Counter;
/**
* @notice
* @dev
*/uint256public publicMintTier3Cap =600;
/**
* @notice
* @dev
*/uint256public publicMintTierGroup15678Cap =992;
/**
* @notice The gas lane to use, which specifies the maximum gas price to bump to.
*/bytes32public keyHash =0x8af398995b04c28e9951adb9721ef74c74f93e6a478f39e7e0777be13527e7ef;
/**
* @notice estimate gas used by fulfillRandomWords()
*/uint32public callbackGasLimit =1000000;
/**
* @notice The minimum number of confirmation blocks on VRF requests before oracles respond
*/uint16public requestConfirmations =3;
/**
* @notice
* @dev
*/mapping(address=>bool) public acceptedCollections;
/**
* @notice nft burn tracker
* @dev increments the counter whenever nft is redeemed
*/mapping(address=>uint256) public burnCounter;
/**
* @notice public mint tracker per wallet
* @dev maps amount of "publicly" minted vandalz per wallet
*/mapping(address=>uint256) public publicMintCounter;
/**
* @notice
* @dev
*/mapping(uint256=> MintDetails[]) public s_requestIdToMintDetails;
/**
* @notice
* @dev
*/mapping(uint256=>mapping(uint256=>uint256[])) public s_requestIdToTierIndexes;
/**
* @dev Throws if timestamp already set.
*/modifierredeemNotPaused() {
require(redeemPaused ==false, "Redeem is paused");
_;
}
/**
* @dev Throws if timestamp already set.
*/modifierpublicMintNotPaused() {
require(publicMintPaused ==false, "Public mint is paused");
_;
}
//===Constructor===///**
* @notice
* @dev
* @param _whisbeVandalz address of WhIsBeVandalz NFT
* @param _totalSupply maximum pieces if the collection
* @param _tiers list of tier details
*/constructor(address _whisbeVandalz,
address _vrfCoordinator, // mainnet - 0x271682DEB8C4E0901D1a1550aD2e64D568E69909address _link_token_contract, // mainnet - 0x514910771AF9Ca656af840dff83E8264EcF986CAuint256 _totalSupply,
DataTypes.Tier[] memory _tiers
) VRFConsumerBaseV2(_vrfCoordinator) ERC721RandomlyAssignVandalzTierPeriphery(_totalSupply, 1) {
uint256 _tiersLen = _tiers.length;
whisbeVandalz = _whisbeVandalz;
if (_tiersLen != IWhIsBeVandalz(whisbeVandalz).TIERS()) {
revert Errors.WhisbeVandalzPeriphery__EightTiersRequired(_tiersLen);
}
// whitelisted collections
acceptedCollections[address(Constants.EXTINCTION_OPEN_EDITION_BY_WHISBE)] =true;
acceptedCollections[address(Constants.THE_HORNED_KARMA_CHAMELEON_BURN_REDEMPTION_BY_WHISBE)] =true;
acceptedCollections[address(Constants.KARMA_KEY_BLACK_BY_WHISBE)] =true;
acceptedCollections[address(Constants.KARMA_KEYS_BY_WHISBE)] =true;
acceptedCollections[address(Constants.GOOD_KARMA_TOKEN)] =true;
// tiersfor (uint256 _i; _i < _tiersLen; _i++) {
tiers.push(_tiers[_i]);
}
// custom : group tiers 1,5,6,7,& 8
groupTier15678Indexes.push(0); // tier1 , group index -> 0
groupTier15678Indexes.push(4); // tier5 , group index -> 1
groupTier15678Indexes.push(5); // tier6 , group index -> 2
groupTier15678Indexes.push(6); // tier7 , group index -> 3
groupTier15678Indexes.push(7); // tier8 , group index -> 4// group tiers 1,3,5,6,7,& 8
groupTier135678Indexes.push(0); // tier1 , group index -> 0
groupTier135678Indexes.push(2); // tier3 , group index -> 1
groupTier135678Indexes.push(4); // tier5 , group index -> 2
groupTier135678Indexes.push(5); // tier6 , group index -> 3
groupTier135678Indexes.push(6); // tier7 , group index -> 4
groupTier135678Indexes.push(7); // tier8 , group index -> 5
_registerInterface(_INTERFACE_ID_ERC721);
_registerInterface(_INTERFACE_ID_IERC2981);
_registerInterface(_INTERFACE_ID_IERC721Metadata);
_registerInterface(_INTERFACE_ID_IERC165);
_registerInterface(_INTERFACE_ID_IERC1155);
COORDINATOR = VRFCoordinatorV2Interface(_vrfCoordinator);
LINKTOKEN = LinkTokenInterface(_link_token_contract);
//Create a new subscription when you deploy the contract.
createNewSubscription();
}
receive() externalpayable{}
/**
* @notice
* @dev
*/functionsetWhIsBeVandalz(address _whisbeVandalz) externalonlyOwner{
whisbeVandalz = _whisbeVandalz;
}
/**
* @notice top up subscription with $LINK
* @dev can be accessed by owner only
* @param _amount $LINK amount to top up
*/functiontopUpSubscription(uint256 _amount) externalonlyOwner{
LINKTOKEN.transferAndCall(address(COORDINATOR), _amount, abi.encode(s_subscriptionId));
}
/**
* @notice add a consumer to the subscription.
* @dev can be accessed by owner only
* @param _consumerAddress consumer address
*/functionaddConsumer(address _consumerAddress) externalonlyOwner{
COORDINATOR.addConsumer(s_subscriptionId, _consumerAddress);
}
/**
* @notice remove a consumer from subscription.
* @dev can be accessed by owner only
* @param _consumerAddress consumer address
*/functionremoveConsumer(address _consumerAddress) externalonlyOwner{
COORDINATOR.removeConsumer(s_subscriptionId, _consumerAddress);
}
/**
* @notice cancel the subscription and send the remaining LINK to a wallet address.
* @dev can be accessed by owner only
* @param _receivingWallet receiving wallet address
*/functioncancelSubscription(address _receivingWallet) externalonlyOwner{
COORDINATOR.cancelSubscription(s_subscriptionId, _receivingWallet);
s_subscriptionId =0;
}
/**
* @notice transfer this contract's $LINK fund to an address.
* @dev 1000000000000000000 = 1 LINK, can be accessed by owner only
* @param _amount $LINK amount
* @param _to address of recipient
*/functionwithdraw(uint256 _amount, address _to) externalonlyOwner{
LINKTOKEN.transfer(_to, _amount);
}
functionsetKeyHash(bytes32 _keyHash) externalonlyOwner{
keyHash = _keyHash;
}
functionsetCallbackGaslimit(uint32 _callbackGasLimit) externalonlyOwner{
callbackGasLimit = _callbackGasLimit;
}
functionsetRequestConfirmations(uint16 _requestConfirmations) externalonlyOwner{
requestConfirmations = _requestConfirmations;
}
functionredeem(address[] memory _collections, uint256[][] memory _tokenIds) externalredeemNotPaused{
uint256 _collectionsLen = _collections.length;
require(_collectionsLen == _tokenIds.length, "");
uint32 _numWords;
for (uint256 _j; _j < _collectionsLen; _j++) {
if (!acceptedCollections[_collections[_j]]) {
revert Errors.WhisbeVandalzPeriphery__InvalidCollection(_collections[_j]);
}
uint256 _tokenIdsLen = _tokenIds[_j].length;
for (uint256 _i; _i < _tokenIdsLen; _i++) {
// escrowif (_collections[_j] == Constants.GOOD_KARMA_TOKEN) {
IERC1155(_collections[_j]).safeTransferFrom(msg.sender, address(this), 0, 1, "");
// 1 from tier 15678
_numWords +=1;
} else {
ERC721Burnable(_collections[_j]).safeTransferFrom(msg.sender, address(this), _tokenIds[_j][_i]);
if (_collections[_j] == Constants.EXTINCTION_OPEN_EDITION_BY_WHISBE) {
// 1 from tier 4// 1 from tier 15678
_numWords +=2;
} elseif (_collections[_j] == Constants.THE_HORNED_KARMA_CHAMELEON_BURN_REDEMPTION_BY_WHISBE) {
// 1 from tier 2// 1 from tier 4// 8 from tier 1,5,6,7,8
_numWords +=10;
} elseif (_collections[_j] == Constants.KARMA_KEY_BLACK_BY_WHISBE) {
// 1 from tier 4// 1 from tier 1,5,6,7,8
_numWords +=2;
} elseif (_collections[_j] == Constants.KARMA_KEYS_BY_WHISBE) {
// 1 from tier 1,5,6,7,8
_numWords +=1;
}
}
}
}
uint256 _requestId =
COORDINATOR.requestRandomWords(
keyHash,
s_subscriptionId,
requestConfirmations,
callbackGasLimit,
_numWords
);
vrnfRequestCounter +=1;
uint256 _index;
for (uint256 _j; _j < _collectionsLen; _j++) {
uint256 _tokenIdsLen = _tokenIds[_j].length;
for (uint256 _i; _i < _tokenIdsLen; _i++) {
// construct mint detailsif (_collections[_j] == Constants.EXTINCTION_OPEN_EDITION_BY_WHISBE) {
// 1 from tier 4// 1 from tier 15678
s_requestIdToMintDetails[_requestId].push(
MintDetails({
collectionAddress: _collections[_j],
beneficiary: msg.sender,
tokenId: _tokenIds[_j][_i]
})
);
_index = s_requestIdToMintDetails[_requestId].length-1;
s_requestIdToTierIndexes[_requestId][_index].push(3);
s_requestIdToTierIndexes[_requestId][_index].push(8); // 8 means tier group 15678
} elseif (_collections[_j] == Constants.GOOD_KARMA_TOKEN) {
// 1 from tier 15678
s_requestIdToMintDetails[_requestId].push(
MintDetails({
collectionAddress: _collections[_j],
beneficiary: msg.sender,
tokenId: _tokenIds[_j][_i]
})
);
_index = s_requestIdToMintDetails[_requestId].length-1;
s_requestIdToTierIndexes[_requestId][_index].push(8); // 8 means tier group 15678
} else {
if (_collections[_j] == Constants.THE_HORNED_KARMA_CHAMELEON_BURN_REDEMPTION_BY_WHISBE) {
// 1 from tier 2// 1 from tier 4// 8 from tier 1,5,6,7,8
s_requestIdToMintDetails[_requestId].push(
MintDetails({
collectionAddress: _collections[_j],
beneficiary: msg.sender,
tokenId: _tokenIds[_j][_i]
})
);
_index = s_requestIdToMintDetails[_requestId].length-1;
s_requestIdToTierIndexes[_requestId][_index].push(1);
s_requestIdToTierIndexes[_requestId][_index].push(3);
s_requestIdToTierIndexes[_requestId][_index].push(8); // 8 means tier group 15678
s_requestIdToTierIndexes[_requestId][_index].push(8); // 8 means tier group 15678
s_requestIdToTierIndexes[_requestId][_index].push(8); // 8 means tier group 15678
s_requestIdToTierIndexes[_requestId][_index].push(8); // 8 means tier group 15678
s_requestIdToTierIndexes[_requestId][_index].push(8); // 8 means tier group 15678
s_requestIdToTierIndexes[_requestId][_index].push(8); // 8 means tier group 15678
s_requestIdToTierIndexes[_requestId][_index].push(8); // 8 means tier group 15678
s_requestIdToTierIndexes[_requestId][_index].push(8); // 8 means tier group 15678
} elseif (_collections[_j] == Constants.KARMA_KEY_BLACK_BY_WHISBE) {
// 1 from tier 4// 1 from tier 1,5,6,7,8
s_requestIdToMintDetails[_requestId].push(
MintDetails({
collectionAddress: _collections[_j],
beneficiary: msg.sender,
tokenId: _tokenIds[_j][_i]
})
);
_index = s_requestIdToMintDetails[_requestId].length-1;
s_requestIdToTierIndexes[_requestId][_index].push(3);
s_requestIdToTierIndexes[_requestId][_index].push(8); // 8 means tier group 15678
} elseif (_collections[_j] == Constants.KARMA_KEYS_BY_WHISBE) {
// 1 from tier 1,5,6,7,8
s_requestIdToMintDetails[_requestId].push(
MintDetails({
collectionAddress: _collections[_j],
beneficiary: msg.sender,
tokenId: _tokenIds[_j][_i]
})
);
_index = s_requestIdToMintDetails[_requestId].length-1;
s_requestIdToTierIndexes[_requestId][_index].push(8); // 8 means tier group 15678
}
}
}
}
}
/**
* @notice
* @dev
*/functionmigrateTokenMatrix(uint256[] memory _tierIndexes,
uint256[] memory _offsets,
uint256[] memory _tokenIndexes
) externalonlyOwner{
_updateTokenMatrix(_tierIndexes, _offsets, _tokenIndexes);
}
/**
* @notice
* @dev
*/functionairDropWhisbeVandalzToOG(address _to) externalonlyOwner{
uint256 _requestId =
COORDINATOR.requestRandomWords(keyHash, s_subscriptionId, requestConfirmations, callbackGasLimit, 1);
vrnfRequestCounter +=1;
s_requestIdToMintDetails[_requestId].push(
MintDetails({ collectionAddress: address(0), beneficiary: _to, tokenId: 0 })
);
s_requestIdToTierIndexes[_requestId][s_requestIdToMintDetails[_requestId].length-1].push(8); // 8 means tier group 15678
}
/**
* @notice
* @dev
*/functioncreatorMintWhisbeVandalz(address _to,
uint256[] memory _tokenIds,
uint256[] memory _tierIndexes,
uint256[] memory _offsets,
uint256[] memory _tokenIndexes
) externalonlyOwner{
uint256 _tokenIdlen = _tokenIds.length;
uint256 _tierIndexesLen = _tierIndexes.length;
require(_tokenIdlen == _tierIndexesLen, "creatorMintWhisbeVandalz: length mismatch");
IWhIsBeVandalz(whisbeVandalz).creatorMint(_to, _tokenIds);
for (uint256 _i; _i < _tierIndexesLen; _i++) {
if (_tierIndexes[_i] ==0) {
_checkAndUpdateGroupTier15678TokenAvailability(0);
_checkAndUpdateGroupTier135678TokenAvailability(0);
}
if (_tierIndexes[_i] ==2) {
_checkAndUpdateGroupTier135678TokenAvailability(2);
}
if (_tierIndexes[_i] >=4&& _tierIndexes[_i] <=7) {
_checkAndUpdateGroupTier15678TokenAvailability(_tierIndexes[_i] -3);
_checkAndUpdateGroupTier135678TokenAvailability(_tierIndexes[_i] -2);
}
}
_updateTokenMatrix(_tierIndexes, _offsets, _tokenIndexes);
}
/**
* @notice
* @dev
*/functionpauseRedeem(bool _state) externalonlyOwner{
redeemPaused = _state;
}
/**
* @notice
* @dev
*/functionupdateMerkleRoot(bytes32 _merkleRoot) externalonlyOwner{
merkleRoot = _merkleRoot;
}
/**
* @notice
* @dev
*/functionpausePublicMint(bool _state) externalonlyOwner{
publicMintPaused = _state;
}
/**
* @notice
* @dev
*/functionsetPublicSalePrice(uint256 _publicSalePrice) externalonlyOwner{
publicSalePrice = _publicSalePrice;
}
/**
* @notice
* @dev
*/functionsetWhitelistState(bool _state) externalonlyOwner{
whitelistState = _state;
}
/**
* @notice
* @dev
*/functionwithdrawETH() externalonlyOwner{
payable(msg.sender).transfer(address(this).balance);
}
/**
* @notice
* @dev
*/functionrenounceWhisbeVandalzOwnership() externalonlyOwner{
IWhIsBeVandalz(whisbeVandalz).renounceOwnership();
}
/**
* @notice
* @dev
*/functiontransferWhisbeVandalzOwnership(address newOwner) externalonlyOwner{
IWhIsBeVandalz(whisbeVandalz).transferOwnership(newOwner);
}
functionsetWhisbeVandalzTier(uint256[] memory _tierIndex,
uint256[] memory _from,
uint256[] memory _to
) externalonlyOwner{
IWhIsBeVandalz(whisbeVandalz).setTier(_tierIndex, _from, _to);
}
functionsetWhisbeVandalzSupply(uint256 _supply) externalonlyOwner{
IWhIsBeVandalz(whisbeVandalz).setSupply(_supply);
}
functionrevealWhisbeVandalz() externalonlyOwner{
IWhIsBeVandalz(whisbeVandalz).reveal();
}
functionsetWhisbeVandalzBaseExtension(stringmemory _newBaseExtension) externalonlyOwner{
IWhIsBeVandalz(whisbeVandalz).setBaseExtension(_newBaseExtension);
}
functionsetWhisbeVandalzBaseURI(stringmemory _newBaseURI) externalonlyOwner{
IWhIsBeVandalz(whisbeVandalz).setBaseURI(_newBaseURI);
}
functionsetWhisbeVandalzNotRevealedURI(stringmemory _notRevealedURI) externalonlyOwner{
IWhIsBeVandalz(whisbeVandalz).setNotRevealedURI(_notRevealedURI);
}
functionwithdrawWhisbeVandalzETH() externalonlyOwner{
IWhIsBeVandalz(whisbeVandalz).withdrawETH();
}
functiontransferWhisbeVandalzAccidentallyLockedTokens(IERC20 _token, uint256 _amount) externalonlyOwner{
IWhIsBeVandalz(whisbeVandalz).transferAccidentallyLockedTokens(_token, _amount);
}
functionsetWhisbeVandalzRoyaltyInfo(address $royaltyAddress, uint256 $percentage) externalonlyOwner{
IWhIsBeVandalz(whisbeVandalz).setRoyaltyInfo($royaltyAddress, $percentage);
}
functionsetPublicMintTier3Cap(uint256 _amount) externalonlyOwner{
publicMintTier3Cap = _amount;
}
functionsetPublicMintTierGroup15678Cap(uint256 _amount) externalonlyOwner{
publicMintTierGroup15678Cap = _amount;
}
functioninCaseNftGetStuck(address _beneficiary,
address _collection,
uint256 _tokenId
) externalonlyOwner{
if (_collection == Constants.GOOD_KARMA_TOKEN) {
IERC1155(_collection).safeTransferFrom(address(this), _beneficiary, 0, 1, "");
} else {
ERC721Burnable(_collection).safeTransferFrom(address(this), _beneficiary, _tokenId);
}
}
functiongetMintDetails(uint256 _requestId) externalviewreturns (MintDetails[] memory) {
return s_requestIdToMintDetails[_requestId];
}
functiongetTierIndexes(uint256 _requestId, uint256 _index) externalviewreturns (uint256[] memory) {
return s_requestIdToTierIndexes[_requestId][_index];
}
functionsupportsInterface(bytes4 $interfaceId)
publicviewoverride(ERC165Storage, ERC1155Receiver)
returns (bool)
{
returnsuper.supportsInterface($interfaceId);
}
/**
* @notice
* @dev
* @param _proof a
*/functionpublicMint(bytes32[] memory _proof) publicpayablepublicMintNotPaused{
// Notes: 1592 will be comprised of Tier 3 pieces (625 pieces)// Remaining pieces chosen from Tier 1/5/6/7/8if (
publicMintTier3Counter >= publicMintTier3Cap &&
publicMintTierGroup15678Counter >= publicMintTierGroup15678Cap
) {
revert Errors.WhisbeVandalzPeriphery__PublicMintOver();
}
// cannot mint more than two Vandalzif (publicMintCounter[msg.sender] >=2) {
revert Errors.WhisbeVandalzPeriphery__PublicMintUpToTwoPerWallet();
}
if (msg.value!= publicSalePrice) {
revert Errors.WhisbeVandalzPeriphery__IncorrectPublicSalePrice();
}
if (whitelistState) {
_isWhitelistedAddress(_proof);
}
uint256 _requestId =
COORDINATOR.requestRandomWords(keyHash, s_subscriptionId, requestConfirmations, callbackGasLimit, 1);
vrnfRequestCounter +=1;
s_requestIdToMintDetails[_requestId].push(
MintDetails({ collectionAddress: address(0), beneficiary: msg.sender, tokenId: 0 })
);
s_requestIdToTierIndexes[_requestId][s_requestIdToMintDetails[_requestId].length-1].push(9); // 9 means tier group 135678
}
functionfulfillRandomWords(uint256 _requestId, uint256[] memory _randomWords) internaloverride{
uint256 _nftLen = s_requestIdToMintDetails[_requestId].length;
uint256[] memory _ids =newuint256[](_randomWords.length);
uint256 _tierIndexesLen;
uint256 _ranCounter;
for (uint256 _i; _i < _nftLen; _i++) {
if (s_requestIdToMintDetails[_requestId][_i].collectionAddress !=address(0)) {
_burnNFT(s_requestIdToMintDetails[_requestId][_i]);
}
_tierIndexesLen = s_requestIdToTierIndexes[_requestId][_i].length;
for (uint256 _j; _j < _tierIndexesLen; _j++) {
uint256 _tierIndex = s_requestIdToTierIndexes[_requestId][_i][_j];
if (_tierIndex ==8) {
// tier group 15678uint256 _groupTier15678IndexesLen = groupTier15678Indexes.length;
if (_groupTier15678IndexesLen ==0) {
revert Errors.WhisbeVandalzPeriphery__NoGroupTier15678Group();
}
uint256 _randomTier15678GroupIndex = _randomWords[_ranCounter] % _groupTier15678IndexesLen;
// check and update tier group based on each tier's token availability
_checkAndUpdateGroupTier15678TokenAvailability(_randomTier15678GroupIndex);
if (_randomTier15678GroupIndex ==0) {
_checkAndUpdateGroupTier135678TokenAvailability(_randomTier15678GroupIndex);
} else {
_checkAndUpdateGroupTier135678TokenAvailability(_randomTier15678GroupIndex +1);
}
_ids[_ranCounter] = _nextTokenFromTier(
_randomWords[_ranCounter],
groupTier15678Indexes[_randomTier15678GroupIndex]
);
} elseif (_tierIndex ==9) {
// public mintif (
publicMintTier3Counter >= publicMintTier3Cap &&
publicMintTierGroup15678Counter >= publicMintTierGroup15678Cap
) {
revert Errors.WhisbeVandalzPeriphery__PublicMintOver();
}
if (
publicMintTier3Counter < publicMintTier3Cap &&
publicMintTierGroup15678Counter < publicMintTierGroup15678Cap
) {
uint256 _groupTier135678IndexesLen = groupTier135678Indexes.length;
if (_groupTier135678IndexesLen ==0) {
revert Errors.WhisbeVandalzPeriphery__NoGroupTier135678Group();
}
// get random tier index from tier groupuint256 _randomTier135678GroupIndex = _randomWords[_ranCounter] % _groupTier135678IndexesLen;
if (groupTier135678Indexes[_randomTier135678GroupIndex] ==2) {
publicMintTier3Counter +=1;
} else {
publicMintTierGroup15678Counter +=1;
}
// check and update tier group based on each tier's token availability
_checkAndUpdateGroupTier135678TokenAvailability(_randomTier135678GroupIndex);
if (_randomTier135678GroupIndex ==0) {
_checkAndUpdateGroupTier15678TokenAvailability(_randomTier135678GroupIndex);
} elseif (_randomTier135678GroupIndex >=2&& _randomTier135678GroupIndex <=5) {
_checkAndUpdateGroupTier15678TokenAvailability(_randomTier135678GroupIndex -1);
}
_ids[_ranCounter] = _nextTokenFromTier(
_randomWords[_ranCounter],
groupTier135678Indexes[_randomTier135678GroupIndex]
);
} elseif (publicMintTierGroup15678Counter < publicMintTierGroup15678Cap) {
uint256 _groupTier15678IndexesLen = groupTier15678Indexes.length;
if (_groupTier15678IndexesLen ==0) {
revert Errors.WhisbeVandalzPeriphery__NoGroupTier15678Group();
}
uint256 _randomTier15678GroupIndex = _randomWords[_ranCounter] % _groupTier15678IndexesLen;
// check and update tier group based on each tier's token availability
_checkAndUpdateGroupTier15678TokenAvailability(_randomTier15678GroupIndex);
publicMintTierGroup15678Counter +=1;
if (_randomTier15678GroupIndex ==0) {
_checkAndUpdateGroupTier135678TokenAvailability(_randomTier15678GroupIndex);
} else {
_checkAndUpdateGroupTier135678TokenAvailability(_randomTier15678GroupIndex +1);
}
_ids[_ranCounter] = _nextTokenFromTier(
_randomWords[_ranCounter],
groupTier15678Indexes[_randomTier15678GroupIndex]
);
}
publicMintCounter[s_requestIdToMintDetails[_requestId][_i].beneficiary] +=1;
} else {
_ids[_ranCounter] = _nextTokenFromTier(_randomWords[_ranCounter], _tierIndex);
if (_tierIndex ==0|| _tierIndex ==4|| _tierIndex ==5|| _tierIndex ==6|| _tierIndex ==7) {
_checkAndUpdateGroupTier15678TokenAvailability(_tierIndex);
}
if (
_tierIndex ==0||
_tierIndex ==2||
_tierIndex ==4||
_tierIndex ==5||
_tierIndex ==6||
_tierIndex ==7
) {
_checkAndUpdateGroupTier135678TokenAvailability(_tierIndex);
}
}
_ranCounter +=1;
}
}
IWhIsBeVandalz(whisbeVandalz).creatorMint(s_requestIdToMintDetails[_requestId][0].beneficiary, _ids);
}
/**
* @notice function to check via merkle proof whether an address is whitelisted
* @param _proof the nodes required for the merkle proof
*/function_isWhitelistedAddress(bytes32[] memory _proof) internalview{
bytes32 addressHash =keccak256(abi.encodePacked(msg.sender));
require(MerkleProof.verify(_proof, merkleRoot, addressHash), "Whitelist: caller is not whitelisted");
}
/**
* @dev
* @param _index
*/function_checkAndUpdateGroupTier15678TokenAvailability(uint256 _index) private{
if (availableTierTokenCount(groupTier15678Indexes[_index]) ==0) {
groupTier15678Indexes[_index] = groupTier15678Indexes[groupTier15678Indexes.length-1];
groupTier15678Indexes.pop();
}
}
/**
* @dev
* @param _index
*/function_checkAndUpdateGroupTier135678TokenAvailability(uint256 _index) private{
if (availableTierTokenCount(groupTier135678Indexes[_index]) ==0) {
groupTier135678Indexes[_index] = groupTier135678Indexes[groupTier135678Indexes.length-1];
groupTier135678Indexes.pop();
}
}
/**
* @dev Create a new subscription when the contract is initially deployed.
*/functioncreateNewSubscription() privateonlyOwner{
s_subscriptionId = COORDINATOR.createSubscription();
// Add this contract as a consumer of its own subscription.
COORDINATOR.addConsumer(s_subscriptionId, address(this));
}
function_burnNFT(MintDetails memory _mintDetails) private{
if (_mintDetails.collectionAddress == Constants.EXTINCTION_OPEN_EDITION_BY_WHISBE) {
ERC721Burnable(_mintDetails.collectionAddress).safeTransferFrom(
address(this),
whisbeVandalz,
_mintDetails.tokenId
);
} elseif (_mintDetails.collectionAddress == Constants.GOOD_KARMA_TOKEN) {
IGoodKarmaToken(_mintDetails.collectionAddress).burnTokenForVandal(address(this));
} else {
ERC721Burnable(_mintDetails.collectionAddress).burn(_mintDetails.tokenId);
}
}
}