// 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);
}
}
}
}
Contract Source Code
File 2 of 15: Context.sol
// 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;
}
}
Contract Source Code
File 3 of 15: ECDSA.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)pragmasolidity ^0.8.0;import"../Strings.sol";
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/libraryECDSA{
enumRecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV
}
function_throwError(RecoverError error) privatepure{
if (error == RecoverError.NoError) {
return; // no error: do nothing
} elseif (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} elseif (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
} elseif (error == RecoverError.InvalidSignatureS) {
revert("ECDSA: invalid signature 's' value");
} elseif (error == RecoverError.InvalidSignatureV) {
revert("ECDSA: invalid signature 'v' value");
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature` or error string. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*
* _Available since v4.3._
*/functiontryRecover(bytes32 hash, bytesmemory signature) internalpurereturns (address, RecoverError) {
// Check the signature length// - case 65: r,s,v signature (standard)// - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._if (signature.length==65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them// currently is to use assembly.assembly {
r :=mload(add(signature, 0x20))
s :=mload(add(signature, 0x40))
v :=byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} elseif (signature.length==64) {
bytes32 r;
bytes32 vs;
// ecrecover takes the signature parameters, and the only way to get them// currently is to use assembly.assembly {
r :=mload(add(signature, 0x20))
vs :=mload(add(signature, 0x40))
}
return tryRecover(hash, r, vs);
} else {
return (address(0), RecoverError.InvalidSignatureLength);
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/functionrecover(bytes32 hash, bytesmemory signature) internalpurereturns (address) {
(address recovered, RecoverError error) = tryRecover(hash, signature);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*
* _Available since v4.3._
*/functiontryRecover(bytes32 hash,
bytes32 r,
bytes32 vs
) internalpurereturns (address, RecoverError) {
bytes32 s = vs &bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
uint8 v =uint8((uint256(vs) >>255) +27);
return tryRecover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*
* _Available since v4.2._
*/functionrecover(bytes32 hash,
bytes32 r,
bytes32 vs
) internalpurereturns (address) {
(address recovered, RecoverError error) = tryRecover(hash, r, vs);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*
* _Available since v4.3._
*/functiontryRecover(bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internalpurereturns (address, RecoverError) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most// signatures from current libraries generate a unique signature with an s-value in the lower half order.//// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept// these malleable signatures as well.if (uint256(s) >0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS);
}
if (v !=27&& v !=28) {
return (address(0), RecoverError.InvalidSignatureV);
}
// If the signature is valid (and not malleable), return the signer addressaddress signer =ecrecover(hash, v, r, s);
if (signer ==address(0)) {
return (address(0), RecoverError.InvalidSignature);
}
return (signer, RecoverError.NoError);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/functionrecover(bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internalpurereturns (address) {
(address recovered, RecoverError error) = tryRecover(hash, v, r, s);
_throwError(error);
return recovered;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/functiontoEthSignedMessageHash(bytes32 hash) internalpurereturns (bytes32) {
// 32 is the length in bytes of hash,// enforced by the type signature abovereturnkeccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
}
/**
* @dev Returns an Ethereum Signed Message, created from `s`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/functiontoEthSignedMessageHash(bytesmemory s) internalpurereturns (bytes32) {
returnkeccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
}
/**
* @dev Returns an Ethereum Signed Typed Data, created from a
* `domainSeparator` and a `structHash`. This produces hash corresponding
* to the one signed with the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
* JSON-RPC method as part of EIP-712.
*
* See {recover}.
*/functiontoTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internalpurereturns (bytes32) {
returnkeccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
}
}
Contract Source Code
File 4 of 15: ERC165.sol
// 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;
}
}
Contract Source Code
File 5 of 15: ERC721.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.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 overriden 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 || 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) 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{}
}
Contract Source Code
File 6 of 15: GenArt721CoreV2_9DCC_IYK.sol
// SPDX-License-Identifier: LGPL-3.0-only// Created By: Art Blocks Inc.import"../GenArt721CoreV2_PBAB.sol";
import"@openzeppelin-4.5/contracts/utils/cryptography/ECDSA.sol";
import"./ISignVerifierRegistry.sol";
pragmasolidity 0.8.9;/**
* @title Powered by Art Blocks ERC-721 core contract.
* Support for IYK pull mechanism to transfer tokens based on verified signatures
* @notice Due to the pull mechanism (claimNFT) being the only supported transfer function, these NFTs will NOT be tradeable on secondary marketplaces
* @author Art Blocks Inc. + IYK GMI Inc.
*/contractGenArt721CoreV2_9DCC_IYKisGenArt721CoreV2_PBAB{
usingECDSAforbytes32;
eventSignVerifierRegistryUpdated(addressindexed signVerifierRegistry,
addressindexed oldSignVerifierRegistry
);
eventSignVerifierIdUpdated(bytes32indexed signVerifierId,
bytes32indexed oldSignVerifierId
);
// Address of registry that resolves the signVerifier
ISignVerifierRegistry public signVerifierRegistry;
bytes32public signVerifierId;
// Nonce per user, used to prevent replay signature attacksmapping(address=>uint256) public claimNonces;
/**
* @notice Initializes contract.
* @param _tokenName Name of token.
* @param _tokenSymbol Token symbol.
* @param _randomizerContract Randomizer contract.
* @param _startingProjectId The initial next project ID.
* @param _signVerifierRegistry Address of registry that resolves the signVerifierId.
* @param _signVerifierId ID of the signVerifier.
* @dev _startingProjectId should be set to a value much, much less than
* max(uint256) to avoid overflow when adding to it.
*/constructor(stringmemory _tokenName,
stringmemory _tokenSymbol,
address _randomizerContract,
uint256 _startingProjectId,
address _signVerifierRegistry,
bytes32 _signVerifierId
)
GenArt721CoreV2_PBAB(
_tokenName,
_tokenSymbol,
_randomizerContract,
_startingProjectId
)
{
require(
_signVerifierRegistry !=address(0),
"_signVerifierRegistry cannot be the zero address"
);
require(
_signVerifierId !=bytes32(0),
"_signVerifierId cannot be the zero ID"
);
require(
IERC165(_signVerifierRegistry).supportsInterface(
type(ISignVerifierRegistry).interfaceId
),
"_signVerifierRegistry does not implement ISignVerifierRegistry"
);
signVerifierRegistry = ISignVerifierRegistry(_signVerifierRegistry);
signVerifierId = _signVerifierId;
emit SignVerifierRegistryUpdated(_signVerifierRegistry, address(0));
emit SignVerifierIdUpdated(_signVerifierId, bytes32(0));
}
/**
* @notice Transfers a token from its owner to the recipient
* @param _sig The result of getClaimSigningHash signed by the signVerifier
* @param _blockExpiry The block as of which the signature is no longer valid
* @param _recipient The address that receives the token
* @param _tokenId The tokenId being claimed
* @dev ECDSA signatures are used to verify the permission to claim a NFT. ECDSA.recover will revert if the signer (signVerifier) is the zero address.
*/functionclaimNFT(bytesmemory _sig,
uint256 _blockExpiry,
address _recipient,
uint256 _tokenId
) public{
bytes32 messageHash = getClaimSigningHash(
_blockExpiry,
_recipient,
_tokenId
).toEthSignedMessageHash();
require(
ECDSA.recover(messageHash, _sig) == getSignVerifier(),
"Permission to call this function failed"
);
require(block.number< _blockExpiry, "Sig expired");
addressfrom= ownerOf(_tokenId);
require(from!=address(0));
claimNonces[_recipient]++;
_safeTransfer(from, _recipient, _tokenId, "");
}
/**
* @notice Returns the current claim nonce of a address
* @param _recipient The address whose nonce is being fetched
* @return nonce The addresses current nonce
* @dev This view exposes the nonce as it will be required for the signature.
* By including a nonce in the signature and updating the nonce on every claim,
* we prevent replay signature attacks, as signatures can only be used once.
*/functiongetClaimNonce(address _recipient)
externalviewvirtualreturns (uint256)
{
return claimNonces[_recipient];
}
/**
* @notice Returns the hash that we expect was signed in claimNFT.
* @param _blockExpiry As of which block the signature is no longer valid
* @param _recipient The address who receives the token
* @param _tokenId The tokenId being claimed
* @return hash A bytes32 hash that is signed by the signVerifier
* @dev claimNFT uses this view to get the expected hash to have been signed - hashes cannot be replayed since claimNFT verifies using the current hash and increments the hash on a successful claim.
*/functiongetClaimSigningHash(uint256 _blockExpiry,
address _recipient,
uint256 _tokenId
) publicviewvirtualreturns (bytes32) {
returnkeccak256(
abi.encodePacked(
_blockExpiry,
_recipient,
_tokenId,
address(this),
claimNonces[_recipient]
)
);
}
/**
* @notice Updates the sign verifier registry address
* @param _signVerifierRegistry The address the new registry
* @dev Requires the DEFAULT_ADMIN_ROLE to call
*/functionsetSignVerifierRegistry(address _signVerifierRegistry)
externalonlyAdmin{
require(
_signVerifierRegistry !=address(0),
"_signVerifierRegistry cannot be the zero address"
);
require(
IERC165(_signVerifierRegistry).supportsInterface(
type(ISignVerifierRegistry).interfaceId
),
"_signVerifierRegistry does not implement ISignVerifierRegistry"
);
address oldSignVerifierRegistry =address(signVerifierRegistry);
signVerifierRegistry = ISignVerifierRegistry(_signVerifierRegistry);
emit SignVerifierRegistryUpdated(
_signVerifierRegistry,
oldSignVerifierRegistry
);
}
/**
* @notice Updates the ID of the sign verifier
* @dev Requires the DEFAULT_ADMIN_ROLE to call
* @param _signVerifierId The ID of the new sign verifier
*/functionsetSignVerifierId(bytes32 _signVerifierId) externalonlyAdmin{
require(
_signVerifierId !=bytes32(0),
"_signVerifierId cannot be the zero ID"
);
bytes32 oldSignVerifierId = signVerifierId;
signVerifierId = _signVerifierId;
emit SignVerifierIdUpdated(_signVerifierId, oldSignVerifierId);
}
/**
* @notice Returns the address of the sign verifier
*/functiongetSignVerifier() publicviewreturns (address) {
address signVerifier = signVerifierRegistry.get(signVerifierId);
require(
signVerifier !=address(0),
"cannot use zero address as sign verifier"
);
return signVerifier;
}
/**
* @notice transferFrom has been overriden to make it useless
* @dev Behavior replaced by pull mechanism in claimNFT
*/functiontransferFrom(address _from,
address _to,
uint256 _tokenId
) publicvirtualoverride{
revert("ERC721 public transfer functions are not allowed");
}
/**
* @notice safeTransferFrom has been overriden to make it useless
* @dev Behavior replaced by pull mechanism in claimNFT
*/functionsafeTransferFrom(address _from,
address _to,
uint256 _tokenId
) publicvirtualoverride{
revert("ERC721 public transfer functions are not allowed");
}
/**
* @notice safeTransferFrom has been overriden to make it useless
* @dev Behavior replaced by pull mechanism in claimNFT
*/functionsafeTransferFrom(address _from,
address _to,
uint256 _tokenId,
bytesmemory _data
) publicvirtualoverride{
revert("ERC721 public transfer functions are not allowed");
}
}
Contract Source Code
File 7 of 15: GenArt721CoreV2_PBAB.sol
// SPDX-License-Identifier: LGPL-3.0-only// Created By: Art Blocks Inc.import"../interfaces/0.8.x/IRandomizer.sol";
import"../interfaces/0.8.x/IGenArt721CoreV2_PBAB.sol";
import"@openzeppelin-4.5/contracts/utils/Strings.sol";
import"@openzeppelin-4.5/contracts/token/ERC721/ERC721.sol";
pragmasolidity 0.8.9;/**
* @title Powered by Art Blocks ERC-721 core contract.
* @author Art Blocks Inc.
*/contractGenArt721CoreV2_PBABisERC721, IGenArt721CoreV2_PBAB{
/// randomizer contract
IRandomizer public randomizerContract;
structProject {
string name;
string artist;
string description;
string website;
string license;
string projectBaseURI;
uint256 invocations;
uint256 maxInvocations;
string scriptJSON;
mapping(uint256=>string) scripts;
uint256 scriptCount;
string ipfsHash;
bool active;
bool locked;
bool paused;
}
uint256constant ONE_MILLION =1_000_000;
mapping(uint256=> Project) projects;
//All financial functions are stripped from struct for visibilitymapping(uint256=>addresspayable) public projectIdToArtistAddress;
mapping(uint256=>string) public projectIdToCurrencySymbol;
mapping(uint256=>address) public projectIdToCurrencyAddress;
mapping(uint256=>uint256) public projectIdToPricePerTokenInWei;
mapping(uint256=>addresspayable) public projectIdToAdditionalPayee;
mapping(uint256=>uint256) public projectIdToAdditionalPayeePercentage;
mapping(uint256=>uint256)
public projectIdToSecondaryMarketRoyaltyPercentage;
addresspayablepublic renderProviderAddress;
/// Percentage of mint revenue allocated to render provideruint256public renderProviderPercentage =10;
mapping(uint256=>uint256) public tokenIdToProjectId;
mapping(uint256=>bytes32) public tokenIdToHash;
mapping(bytes32=>uint256) public hashToTokenId;
/// admin for contractaddresspublic admin;
/// true if address is whitelistedmapping(address=>bool) public isWhitelisted;
/// true if minter is whitelistedmapping(address=>bool) public isMintWhitelisted;
/// next project ID to be createduint256public nextProjectId;
modifieronlyValidTokenId(uint256 _tokenId) {
require(_exists(_tokenId), "Token ID does not exist");
_;
}
modifieronlyUnlocked(uint256 _projectId) {
require(!projects[_projectId].locked, "Only if unlocked");
_;
}
modifieronlyArtist(uint256 _projectId) {
require(
msg.sender== projectIdToArtistAddress[_projectId],
"Only artist"
);
_;
}
modifieronlyAdmin() {
require(msg.sender== admin, "Only admin");
_;
}
modifieronlyWhitelisted() {
require(isWhitelisted[msg.sender], "Only whitelisted");
_;
}
modifieronlyArtistOrWhitelisted(uint256 _projectId) {
require(
isWhitelisted[msg.sender] ||msg.sender== projectIdToArtistAddress[_projectId],
"Only artist or whitelisted"
);
_;
}
/**
* @notice Initializes contract.
* @param _tokenName Name of token.
* @param _tokenSymbol Token symbol.
* @param _randomizerContract Randomizer contract.
* @param _startingProjectId The initial next project ID.
* @dev _startingProjectId should be set to a value much, much less than
* max(uint256) to avoid overflow when adding to it.
*/constructor(stringmemory _tokenName,
stringmemory _tokenSymbol,
address _randomizerContract,
uint256 _startingProjectId
) ERC721(_tokenName, _tokenSymbol) {
admin =msg.sender;
isWhitelisted[msg.sender] =true;
renderProviderAddress =payable(msg.sender);
randomizerContract = IRandomizer(_randomizerContract);
// initialize next project ID
nextProjectId = _startingProjectId;
}
/**
* @notice Mints a token from project `_projectId` and sets the
* token's owner to `_to`.
* @param _to Address to be the minted token's owner.
* @param _projectId Project ID to mint a token on.
* @param _by Purchaser of minted token.
* @dev sender must be a whitelisted minter
*/functionmint(address _to,
uint256 _projectId,
address _by
) externalreturns (uint256 _tokenId) {
require(
isMintWhitelisted[msg.sender],
"Must mint from whitelisted minter contract."
);
require(
projects[_projectId].invocations +1<=
projects[_projectId].maxInvocations,
"Must not exceed max invocations"
);
require(
projects[_projectId].active ||
_by == projectIdToArtistAddress[_projectId],
"Project must exist and be active"
);
require(
!projects[_projectId].paused ||
_by == projectIdToArtistAddress[_projectId],
"Purchases are paused."
);
uint256 tokenId = _mintToken(_to, _projectId);
return tokenId;
}
function_mintToken(address _to, uint256 _projectId)
internalreturns (uint256 _tokenId)
{
uint256 tokenIdToBe = (_projectId * ONE_MILLION) +
projects[_projectId].invocations;
projects[_projectId].invocations = projects[_projectId].invocations +1;
bytes32 hash =keccak256(
abi.encodePacked(
projects[_projectId].invocations,
block.number,
blockhash(block.number-1),
randomizerContract.returnValue()
)
);
tokenIdToHash[tokenIdToBe] = hash;
hashToTokenId[hash] = tokenIdToBe;
_mint(_to, tokenIdToBe);
tokenIdToProjectId[tokenIdToBe] = _projectId;
emit Mint(_to, tokenIdToBe, _projectId);
return tokenIdToBe;
}
/**
* @notice Updates contract admin to `_adminAddress`.
*/functionupdateAdmin(address _adminAddress) publiconlyAdmin{
admin = _adminAddress;
}
/**
* @notice Updates render provider address to `_renderProviderAddress`.
*/functionupdateRenderProviderAddress(addresspayable _renderProviderAddress)
publiconlyAdmin{
renderProviderAddress = _renderProviderAddress;
}
/**
* @notice Updates render provider mint revenue percentage to
* `_renderProviderPercentage`.
*/functionupdateRenderProviderPercentage(uint256 _renderProviderPercentage)
publiconlyAdmin{
require(_renderProviderPercentage <=25, "Max of 25%");
renderProviderPercentage = _renderProviderPercentage;
}
/**
* @notice Whitelists `_address`.
*/functionaddWhitelisted(address _address) publiconlyAdmin{
isWhitelisted[_address] =true;
}
/**
* @notice Revokes whitelisting of `_address`.
*/functionremoveWhitelisted(address _address) publiconlyAdmin{
isWhitelisted[_address] =false;
}
/**
* @notice Whitelists minter `_address`.
*/functionaddMintWhitelisted(address _address) publiconlyAdmin{
isMintWhitelisted[_address] =true;
}
/**
* @notice Revokes whitelisting of minter `_address`.
*/functionremoveMintWhitelisted(address _address) publiconlyAdmin{
isMintWhitelisted[_address] =false;
}
/**
* @notice Updates randomizer to `_randomizerAddress`.
*/functionupdateRandomizerAddress(address _randomizerAddress)
publiconlyWhitelisted{
randomizerContract = IRandomizer(_randomizerAddress);
}
/**
* @notice Locks project `_projectId`.
*/functiontoggleProjectIsLocked(uint256 _projectId)
publiconlyWhitelistedonlyUnlocked(_projectId)
{
projects[_projectId].locked =true;
}
/**
* @notice Toggles project `_projectId` as active/inactive.
*/functiontoggleProjectIsActive(uint256 _projectId) publiconlyWhitelisted{
projects[_projectId].active =!projects[_projectId].active;
}
/**
* @notice Updates artist of project `_projectId` to `_artistAddress`.
*/functionupdateProjectArtistAddress(uint256 _projectId,
addresspayable _artistAddress
) publiconlyArtistOrWhitelisted(_projectId) {
projectIdToArtistAddress[_projectId] = _artistAddress;
}
/**
* @notice Toggles paused state of project `_projectId`.
*/functiontoggleProjectIsPaused(uint256 _projectId)
publiconlyArtist(_projectId)
{
projects[_projectId].paused =!projects[_projectId].paused;
}
/**
* @notice Adds new project `_projectName` by `_artistAddress`.
* @param _projectName Project name.
* @param _artistAddress Artist's address.
* @param _pricePerTokenInWei Price to mint a token, in Wei.
*/functionaddProject(stringmemory _projectName,
addresspayable _artistAddress,
uint256 _pricePerTokenInWei
) publiconlyWhitelisted{
uint256 projectId = nextProjectId;
projectIdToArtistAddress[projectId] = _artistAddress;
projects[projectId].name= _projectName;
projectIdToCurrencySymbol[projectId] ="ETH";
projectIdToPricePerTokenInWei[projectId] = _pricePerTokenInWei;
projects[projectId].paused =true;
projects[projectId].maxInvocations = ONE_MILLION;
nextProjectId = nextProjectId +1;
}
/**
* @notice Updates payment currency of project `_projectId` to be
* `_currencySymbol`.
* @param _projectId Project ID to update.
* @param _currencySymbol Currency symbol.
* @param _currencyAddress Currency address.
*/functionupdateProjectCurrencyInfo(uint256 _projectId,
stringmemory _currencySymbol,
address _currencyAddress
) publiconlyArtist(_projectId) {
projectIdToCurrencySymbol[_projectId] = _currencySymbol;
projectIdToCurrencyAddress[_projectId] = _currencyAddress;
}
/**
* @notice Updates price per token of project `_projectId` to be
* '_pricePerTokenInWei`, in Wei.
*/functionupdateProjectPricePerTokenInWei(uint256 _projectId,
uint256 _pricePerTokenInWei
) publiconlyArtist(_projectId) {
projectIdToPricePerTokenInWei[_projectId] = _pricePerTokenInWei;
}
/**
* @notice Updates name of project `_projectId` to be `_projectName`.
*/functionupdateProjectName(uint256 _projectId, stringmemory _projectName)
publiconlyUnlocked(_projectId)
onlyArtistOrWhitelisted(_projectId)
{
projects[_projectId].name= _projectName;
}
/**
* @notice Updates artist name for project `_projectId` to be
* `_projectArtistName`.
*/functionupdateProjectArtistName(uint256 _projectId,
stringmemory _projectArtistName
) publiconlyUnlocked(_projectId) onlyArtistOrWhitelisted(_projectId) {
projects[_projectId].artist = _projectArtistName;
}
/**
* @notice Updates additional payee for project `_projectId` to be
* `_additionalPayee`, receiving `_additionalPayeePercentage` percent
* of artist mint and royalty revenues.
*/functionupdateProjectAdditionalPayeeInfo(uint256 _projectId,
addresspayable _additionalPayee,
uint256 _additionalPayeePercentage
) publiconlyArtist(_projectId) {
require(_additionalPayeePercentage <=100, "Max of 100%");
projectIdToAdditionalPayee[_projectId] = _additionalPayee;
projectIdToAdditionalPayeePercentage[
_projectId
] = _additionalPayeePercentage;
}
/**
* @notice Updates artist secondary market royalties for project
* `_projectId` to be `_secondMarketRoyalty` percent.
*/functionupdateProjectSecondaryMarketRoyaltyPercentage(uint256 _projectId,
uint256 _secondMarketRoyalty
) publiconlyArtist(_projectId) {
require(_secondMarketRoyalty <=100, "Max of 100%");
projectIdToSecondaryMarketRoyaltyPercentage[
_projectId
] = _secondMarketRoyalty;
}
/**
* @notice Updates description of project `_projectId`.
*/functionupdateProjectDescription(uint256 _projectId,
stringmemory _projectDescription
) publiconlyArtist(_projectId) {
projects[_projectId].description = _projectDescription;
}
/**
* @notice Updates website of project `_projectId` to be `_projectWebsite`.
*/functionupdateProjectWebsite(uint256 _projectId,
stringmemory _projectWebsite
) publiconlyArtist(_projectId) {
projects[_projectId].website = _projectWebsite;
}
/**
* @notice Updates license for project `_projectId`.
*/functionupdateProjectLicense(uint256 _projectId,
stringmemory _projectLicense
) publiconlyUnlocked(_projectId) onlyArtistOrWhitelisted(_projectId) {
projects[_projectId].license = _projectLicense;
}
/**
* @notice Updates maximum invocations for project `_projectId` to
* `_maxInvocations`.
*/functionupdateProjectMaxInvocations(uint256 _projectId,
uint256 _maxInvocations
) publiconlyArtist(_projectId) {
require(
(!projects[_projectId].locked ||
_maxInvocations < projects[_projectId].maxInvocations),
"Only if unlocked"
);
require(
_maxInvocations > projects[_projectId].invocations,
"You must set max invocations greater than current invocations"
);
require(_maxInvocations <= ONE_MILLION, "Cannot exceed 1000000");
projects[_projectId].maxInvocations = _maxInvocations;
}
/**
* @notice Adds a script to project `_projectId`.
* @param _projectId Project to be updated.
* @param _script Script to be added.
*/functionaddProjectScript(uint256 _projectId, stringmemory _script)
publiconlyUnlocked(_projectId)
onlyArtistOrWhitelisted(_projectId)
{
projects[_projectId].scripts[
projects[_projectId].scriptCount
] = _script;
projects[_projectId].scriptCount = projects[_projectId].scriptCount +1;
}
/**
* @notice Updates script for project `_projectId` at script ID `_scriptId`.
* @param _projectId Project to be updated.
* @param _scriptId Script ID to be updated.
* @param _script Script to be added.
*/functionupdateProjectScript(uint256 _projectId,
uint256 _scriptId,
stringmemory _script
) publiconlyUnlocked(_projectId) onlyArtistOrWhitelisted(_projectId) {
require(
_scriptId < projects[_projectId].scriptCount,
"scriptId out of range"
);
projects[_projectId].scripts[_scriptId] = _script;
}
/**
* @notice Removes last script from project `_projectId`.
*/functionremoveProjectLastScript(uint256 _projectId)
publiconlyUnlocked(_projectId)
onlyArtistOrWhitelisted(_projectId)
{
require(
projects[_projectId].scriptCount >0,
"there are no scripts to remove"
);
delete projects[_projectId].scripts[
projects[_projectId].scriptCount -1
];
projects[_projectId].scriptCount = projects[_projectId].scriptCount -1;
}
/**
* @notice Updates script json for project `_projectId`.
*/functionupdateProjectScriptJSON(uint256 _projectId,
stringmemory _projectScriptJSON
) publiconlyUnlocked(_projectId) onlyArtistOrWhitelisted(_projectId) {
projects[_projectId].scriptJSON = _projectScriptJSON;
}
/**
* @notice Updates ipfs hash for project `_projectId`.
*/functionupdateProjectIpfsHash(uint256 _projectId, stringmemory _ipfsHash)
publiconlyUnlocked(_projectId)
onlyArtistOrWhitelisted(_projectId)
{
projects[_projectId].ipfsHash = _ipfsHash;
}
/**
* @notice Updates base URI for project `_projectId` to `_newBaseURI`.
*/functionupdateProjectBaseURI(uint256 _projectId, stringmemory _newBaseURI)
publiconlyArtist(_projectId)
{
projects[_projectId].projectBaseURI = _newBaseURI;
}
/**
* @notice Returns project details for project `_projectId`.
* @param _projectId Project to be queried.
* @return projectName Name of project
* @return artist Artist of project
* @return description Project description
* @return website Project website
* @return license Project license
*/functionprojectDetails(uint256 _projectId)
publicviewreturns (stringmemory projectName,
stringmemory artist,
stringmemory description,
stringmemory website,
stringmemory license
)
{
projectName = projects[_projectId].name;
artist = projects[_projectId].artist;
description = projects[_projectId].description;
website = projects[_projectId].website;
license = projects[_projectId].license;
}
/**
* @notice Returns project token information for project `_projectId`.
* @param _projectId Project to be queried.
* @return artistAddress Project Artist's address
* @return pricePerTokenInWei Price to mint a token, in Wei
* @return invocations Current number of invocations
* @return maxInvocations Maximum allowed invocations
* @return active Boolean representing if project is currently active
* @return additionalPayee Additional payee address
* @return additionalPayeePercentage Percentage of artist revenue
* to be sent to the additional payee's address
* @return currency Symbol of project's currency
* @return currencyAddress Address of project's currency
*/functionprojectTokenInfo(uint256 _projectId)
publicviewreturns (address artistAddress,
uint256 pricePerTokenInWei,
uint256 invocations,
uint256 maxInvocations,
bool active,
address additionalPayee,
uint256 additionalPayeePercentage,
stringmemory currency,
address currencyAddress
)
{
artistAddress = projectIdToArtistAddress[_projectId];
pricePerTokenInWei = projectIdToPricePerTokenInWei[_projectId];
invocations = projects[_projectId].invocations;
maxInvocations = projects[_projectId].maxInvocations;
active = projects[_projectId].active;
additionalPayee = projectIdToAdditionalPayee[_projectId];
additionalPayeePercentage = projectIdToAdditionalPayeePercentage[
_projectId
];
currency = projectIdToCurrencySymbol[_projectId];
currencyAddress = projectIdToCurrencyAddress[_projectId];
}
/**
* @notice Returns script information for project `_projectId`.
* @param _projectId Project to be queried.
* @return scriptJSON Project's script json
* @return scriptCount Count of scripts for project
* @return ipfsHash IPFS hash for project
* @return locked Boolean representing if project is locked
* @return paused Boolean representing if project is paused
*/functionprojectScriptInfo(uint256 _projectId)
publicviewreturns (stringmemory scriptJSON,
uint256 scriptCount,
stringmemory ipfsHash,
bool locked,
bool paused
)
{
scriptJSON = projects[_projectId].scriptJSON;
scriptCount = projects[_projectId].scriptCount;
ipfsHash = projects[_projectId].ipfsHash;
locked = projects[_projectId].locked;
paused = projects[_projectId].paused;
}
/**
* @notice Returns script for project `_projectId` at script index `_index`.
*/functionprojectScriptByIndex(uint256 _projectId, uint256 _index)
publicviewreturns (stringmemory)
{
return projects[_projectId].scripts[_index];
}
/**
* @notice Returns base URI for project `_projectId`.
*/functionprojectURIInfo(uint256 _projectId)
publicviewreturns (stringmemory projectBaseURI)
{
projectBaseURI = projects[_projectId].projectBaseURI;
}
/**
* @notice Gets royalty data for token ID `_tokenId`.
* @param _tokenId Token ID to be queried.
* @return artistAddress Artist's payment address
* @return additionalPayee Additional payee's payment address
* @return additionalPayeePercentage Percentage of artist revenue
* to be sent to the additional payee's address
* @return royaltyFeeByID Total royalty percentage to be sent to
* combination of artist and additional payee
*/functiongetRoyaltyData(uint256 _tokenId)
publicviewreturns (address artistAddress,
address additionalPayee,
uint256 additionalPayeePercentage,
uint256 royaltyFeeByID
)
{
artistAddress = projectIdToArtistAddress[tokenIdToProjectId[_tokenId]];
additionalPayee = projectIdToAdditionalPayee[
tokenIdToProjectId[_tokenId]
];
additionalPayeePercentage = projectIdToAdditionalPayeePercentage[
tokenIdToProjectId[_tokenId]
];
royaltyFeeByID = projectIdToSecondaryMarketRoyaltyPercentage[
tokenIdToProjectId[_tokenId]
];
}
/**
* @notice Gets token URI for token ID `_tokenId`.
*/functiontokenURI(uint256 _tokenId)
publicviewoverrideonlyValidTokenId(_tokenId)
returns (stringmemory)
{
returnstring(
abi.encodePacked(
projects[tokenIdToProjectId[_tokenId]].projectBaseURI,
Strings.toString(_tokenId)
)
);
}
}
Contract Source Code
File 8 of 15: 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);
}
Contract Source Code
File 9 of 15: IERC721.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (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`, 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 Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/functiongetApproved(uint256 tokenId) externalviewreturns (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.
*/functionsetApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/functionisApprovedForAll(address owner, address operator) externalviewreturns (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.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 tokenId,
bytescalldata data
) external;
}
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
*/functiononERC721Received(address operator,
addressfrom,
uint256 tokenId,
bytescalldata data
) externalreturns (bytes4);
}
Contract Source Code
File 12 of 15: IGenArt721CoreV2_PBAB.sol
// SPDX-License-Identifier: LGPL-3.0-only// Created By: Art Blocks Inc.pragmasolidity ^0.8.0;interfaceIGenArt721CoreV2_PBAB{
/**
* @notice Token ID `_tokenId` minted on project ID `_projectId` to `_to`.
*/eventMint(addressindexed _to,
uint256indexed _tokenId,
uint256indexed _projectId
);
// getter function of public variablefunctionadmin() externalviewreturns (address);
// getter function of public variablefunctionnextProjectId() externalviewreturns (uint256);
// getter function of public mappingfunctiontokenIdToProjectId(uint256 tokenId)
externalviewreturns (uint256 projectId);
functionisWhitelisted(address sender) externalviewreturns (bool);
functionprojectIdToCurrencySymbol(uint256 _projectId)
externalviewreturns (stringmemory);
functionprojectIdToCurrencyAddress(uint256 _projectId)
externalviewreturns (address);
functionprojectIdToArtistAddress(uint256 _projectId)
externalviewreturns (addresspayable);
functionprojectIdToPricePerTokenInWei(uint256 _projectId)
externalviewreturns (uint256);
functionprojectIdToAdditionalPayee(uint256 _projectId)
externalviewreturns (addresspayable);
functionprojectIdToAdditionalPayeePercentage(uint256 _projectId)
externalviewreturns (uint256);
functionprojectTokenInfo(uint256 _projectId)
externalviewreturns (address,
uint256,
uint256,
uint256,
bool,
address,
uint256,
stringmemory,
address);
functionrenderProviderAddress() externalviewreturns (addresspayable);
functionrenderProviderPercentage() externalviewreturns (uint256);
functionmint(address _to,
uint256 _projectId,
address _by
) externalreturns (uint256 tokenId);
functiongetRoyaltyData(uint256 _tokenId)
externalviewreturns (address artistAddress,
address additionalPayee,
uint256 additionalPayeePercentage,
uint256 royaltyFeeByID
);
}
// SPDX-License-Identifier: MITpragmasolidity ^0.8.9;import"@openzeppelin-4.5/contracts/utils/introspection/IERC165.sol";
interfaceISignVerifierRegistryisIERC165{
/**
* @notice Emitted upon the registration of `signVerifier` to a previously unregistered ID `id`.
*/eventRegister(bytes32 id, address signVerifier);
/**
* @notice Emitted upon the update of `signVerifier` to a previously unregistered ID `id`, replacing `oldSignVerifier`.
*/eventUpdate(bytes32 id, address signVerifier, address oldSignVerifier);
/**
* @notice Registers `signVerifier` to `id`, with the registrant set as the admin of `id`.
* @dev Does not allow updating of an existing ID, or registering an ID that matches the admin role.
*/functionregister(bytes32 id, address signVerifier) external;
/**
* @notice Updates the sign verifier for `id` to `signVerifier`.
* @dev Allows for the signVerifier to be the zero address, which can be dangerous but is a way of invalidating signatures en masse if required.
*/functionupdate(bytes32 id, address signVerifier) external;
/**
* @notice Returns the address of the sign verifier registered to `id`.
* @dev Reverts if `id` has not been registered yet
*/functionget(bytes32 id) externalviewreturns (address);
}
Contract Source Code
File 15 of 15: 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);
}
}