// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/cryptography/ECDSA.sol)
pragma solidity ^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.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} else if (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
} else if (error == RecoverError.InvalidSignatureS) {
revert("ECDSA: invalid signature 's' value");
} else if (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._
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (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);
} else if (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.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (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._
*/
function tryRecover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address, RecoverError) {
bytes32 s;
uint8 v;
assembly {
s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
v := add(shr(255, vs), 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._
*/
function recover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (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._
*/
function tryRecover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (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 address
address 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.
*/
function recover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (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}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
return keccak256(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}.
*/
function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
return keccak256(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}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @author: manifold.xyz
import "../../../openzeppelin/utils/introspection/IERC165.sol";
/**
* @dev Core creator interface
*/
interface ICreatorCore is IERC165 {
event ExtensionRegistered(
address indexed extension,
address indexed sender
);
event ExtensionUnregistered(
address indexed extension,
address indexed sender
);
event ExtensionBlacklisted(
address indexed extension,
address indexed sender
);
event MintPermissionsUpdated(
address indexed extension,
address indexed permissions,
address indexed sender
);
event RoyaltiesUpdated(
uint256 indexed tokenId,
address payable[] receivers,
uint256[] basisPoints
);
event DefaultRoyaltiesUpdated(
address payable[] receivers,
uint256[] basisPoints
);
event ExtensionRoyaltiesUpdated(
address indexed extension,
address payable[] receivers,
uint256[] basisPoints
);
event ExtensionApproveTransferUpdated(
address indexed extension,
bool enabled
);
/**
* @dev gets address of all extensions
*/
function getExtensions() external view returns (address[] memory);
/**
* @dev add an extension. Can only be called by contract owner or admin.
* extension address must point to a contract implementing ICreatorExtension.
* Returns True if newly added, False if already added.
*/
function registerExtension(address extension, string calldata baseURI)
external;
/**
* @dev add an extension. Can only be called by contract owner or admin.
* extension address must point to a contract implementing ICreatorExtension.
* Returns True if newly added, False if already added.
*/
function registerExtension(
address extension,
string calldata baseURI,
bool baseURIIdentical
) external;
/**
* @dev add an extension. Can only be called by contract owner or admin.
* Returns True if removed, False if already removed.
*/
function unregisterExtension(address extension) external;
/**
* @dev blacklist an extension. Can only be called by contract owner or admin.
* This function will destroy all ability to reference the metadata of any tokens created
* by the specified extension. It will also unregister the extension if needed.
* Returns True if removed, False if already removed.
*/
function blacklistExtension(address extension) external;
/**
* @dev set the baseTokenURI of an extension. Can only be called by extension.
*/
function setBaseTokenURIExtension(string calldata uri) external;
/**
* @dev set the baseTokenURI of an extension. Can only be called by extension.
* For tokens with no uri configured, tokenURI will return "uri+tokenId"
*/
function setBaseTokenURIExtension(string calldata uri, bool identical)
external;
/**
* @dev set the common prefix of an extension. Can only be called by extension.
* If configured, and a token has a uri set, tokenURI will return "prefixURI+tokenURI"
* Useful if you want to use ipfs/arweave
*/
function setTokenURIPrefixExtension(string calldata prefix) external;
/**
* @dev set the tokenURI of a token extension. Can only be called by extension that minted token.
*/
function setTokenURIExtension(uint256 tokenId, string calldata uri)
external;
/**
* @dev set the tokenURI of a token extension for multiple tokens. Can only be called by extension that minted token.
*/
function setTokenURIExtension(
uint256[] memory tokenId,
string[] calldata uri
) external;
/**
* @dev set the baseTokenURI for tokens with no extension. Can only be called by owner/admin.
* For tokens with no uri configured, tokenURI will return "uri+tokenId"
*/
function setBaseTokenURI(string calldata uri) external;
/**
* @dev set the common prefix for tokens with no extension. Can only be called by owner/admin.
* If configured, and a token has a uri set, tokenURI will return "prefixURI+tokenURI"
* Useful if you want to use ipfs/arweave
*/
function setTokenURIPrefix(string calldata prefix) external;
/**
* @dev set the tokenURI of a token with no extension. Can only be called by owner/admin.
*/
function setTokenURI(uint256 tokenId, string calldata uri) external;
/**
* @dev set the tokenURI of multiple tokens with no extension. Can only be called by owner/admin.
*/
function setTokenURI(uint256[] memory tokenIds, string[] calldata uris)
external;
/**
* @dev set a permissions contract for an extension. Used to control minting.
*/
function setMintPermissions(address extension, address permissions)
external;
/**
* @dev Configure so transfers of tokens created by the caller (must be extension) gets approval
* from the extension before transferring
*/
function setApproveTransferExtension(bool enabled) external;
/**
* @dev get the extension of a given token
*/
function tokenExtension(uint256 tokenId) external view returns (address);
/**
* @dev Set default royalties
*/
function setRoyalties(
address payable[] calldata receivers,
uint256[] calldata basisPoints
) external;
/**
* @dev Set royalties of a token
*/
function setRoyalties(
uint256 tokenId,
address payable[] calldata receivers,
uint256[] calldata basisPoints
) external;
/**
* @dev Set royalties of an extension
*/
function setRoyaltiesExtension(
address extension,
address payable[] calldata receivers,
uint256[] calldata basisPoints
) external;
/**
* @dev Get royalites of a token. Returns list of receivers and basisPoints
*/
function getRoyalties(uint256 tokenId)
external
view
returns (address payable[] memory, uint256[] memory);
// Royalty support for various other standards
function getFeeRecipients(uint256 tokenId)
external
view
returns (address payable[] memory);
function getFeeBps(uint256 tokenId)
external
view
returns (uint256[] memory);
function getFees(uint256 tokenId)
external
view
returns (address payable[] memory, uint256[] memory);
function royaltyInfo(uint256 tokenId, uint256 value)
external
view
returns (address, uint256);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155.sol)
pragma solidity ^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._
*/
interface IERC1155 is IERC165 {
/**
* @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
*/
event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);
/**
* @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
* transfers.
*/
event TransferBatch(
address indexed operator,
address indexed from,
address indexed to,
uint256[] ids,
uint256[] values
);
/**
* @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
* `approved`.
*/
event ApprovalForAll(address indexed account, address indexed 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}.
*/
event URI(string value, uint256 indexed id);
/**
* @dev Returns the amount of tokens of token type `id` owned by `account`.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) external view returns (uint256);
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
external
view
returns (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.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address account, address operator) external view returns (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.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes calldata 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.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] calldata ids,
uint256[] calldata amounts,
bytes calldata data
) external;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;
/**
* @title Interface for PriceFeed
*/
interface IPriceFeed {
function getLatestPrice(address latestPriceAddress)
external
returns (int256,uint8);
function updatePriceFeedAddress(
address[] memory priceFeedAddress,
address[] memory currencyAddress
) external;
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;
pragma experimental ABIEncoderV2;
/**
* @title Interface for RoyaltyEngine
*/
interface IRoyaltyEngine {
/**
* @notice Emits when an collection level Royalty is configured
* @param collectionAddress contract address
* @param receivers set of royalty receivers
* @param basisPoints set of royalty Bps
*/
event RoyaltiesUpdated(
address indexed collectionAddress,
address payable[] receivers,
uint256[] basisPoints
);
/**
* @notice Emits when an Token level Royalty is configured
* @param collectionAddress contract address
* @param tokenId Token Id
* @param receivers set of royalty receivers
* @param basisPoints set of royalty Bps
*/
event TokenRoyaltiesUpdated(
address collectionAddress,
uint256 indexed tokenId,
address payable[] receivers,
uint256[] basisPoints
);
/**
* @notice Emits when address is added into Black List.
* @param account BlackListed NFT contract address or wallet address
* @param sender caller address
**/
event AddedBlacklistedAddress(
address indexed account,
address indexed sender
);
/**
* @notice Eits when address is removed from Black List.
* @param account BlackListed NFT contract address or wallet address
* @param sender caller address
**/
event RevokedBlacklistedAddress(
address indexed account,
address indexed sender
);
/**
* @notice Setting royalty for NFT Collection.
* @param collectionAddress NFT contract address
* @param receivers set of royalty receivers
* @param basisPoints set of royalty Bps
*/
function setRoyalty(
address collectionAddress,
address payable[] calldata receivers,
uint256[] calldata basisPoints
) external;
/**
* @notice Setting royalty for token.
* @param collectionAddress contract address
* @param tokenId Token Id
* @param receivers set of royalty receivers
* @param basisPoints set of royalty Bps
*/
function setTokenRoyalty(
address collectionAddress,
uint256 tokenId,
address payable[] calldata receivers,
uint256[] calldata basisPoints
) external;
/**
* @notice getting royalty information from Other royalty standard.
* @param collectionAddress contract address
* @param tokenId Token Id
* @return receivers returns set of royalty receivers address
* @return basisPoints returns set of Bps to calculate Shares.
**/
function getRoyalty(address collectionAddress, uint256 tokenId)
external
view
returns (address payable[] memory receivers, uint256[] memory basisPoints);
/**
* @notice Compute royalty Shares
* @param collectionAddress contract address
* @param tokenId Token Id
* @param amount amount involved to compute the Shares.
* @return receivers returns set of royalty receivers address
* @return basisPoints returns set of Bps.
* @return feeAmount returns set of Shares.
**/
function getRoyaltySplitshare(
address collectionAddress,
uint256 tokenId,
uint256 amount
)
external
view
returns (
address payable[] memory receivers,
uint256[] memory basisPoints,
uint256[] memory feeAmount
);
/**
* @notice Adds address as blacklist
* @param commonAddress user wallet address
**/
function blacklistAddress(address commonAddress) external;
/**
* @notice revoke the blacklistedAddress
* @param commonAddress address info
**/
function revokeBlacklistedAddress(address commonAddress) external;
/**
* @notice checks the blacklistedAddress
* @param commonAddress address info
**/
function isBlacklistedAddress(address commonAddress)
external
view
returns (bool);
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.17;
import {IERC721, IERC165} from "../../openzeppelin/token/ERC721/IERC721.sol";
import {IERC1155} from "../../openzeppelin/token/ERC1155/IERC1155.sol";
import {ReentrancyGuard} from "../../openzeppelin/security/ReentrancyGuard.sol";
import {IERC20} from "../../openzeppelin/token/ERC20/IERC20.sol";
import {SafeERC20} from "../../openzeppelin/token/ERC20/utils/SafeERC20.sol";
import {ECDSA} from "../../openzeppelin/utils/cryptography/ECDSA.sol";
import {ICreatorCore} from "../../manifold/creator-core/core/ICreatorCore.sol";
import {IPriceFeed} from "../interfaces/IPriceFeed.sol";
import {SafeCast} from "../../openzeppelin/utils/math/SafeCast.sol";
import "../interfaces/IRoyaltyEngine.sol";
/**
* @title IWrapperNativeToken
* @dev Interface for Wrapped native tokens such as WETH, WMATIC, WBNB, etc
*/
interface IWrappedNativeToken {
function deposit() external payable;
function withdraw(uint256 wad) external;
function transfer(address to, uint256 value) external returns (bool);
}
contract Marketplace is ReentrancyGuard {
using SafeERC20 for IERC20;
using ECDSA for bytes32;
address public immutable owner;
/// @notice The metadata for a given Order
/// @param uuid The generated Unique uuid
/// @param tokenId The NFT tokenId
/// @param tokenContract The NFT Contract address
/// @param quantity The total quantity of the ERC1155 token if ERC721 it is 1
/// @param tokenOwner The address of the Token Owner
/// @param fixedPrice Price fixed by the TokenOwner
/// @param paymentToken ERC20 address chosen by TokenOwner for Payments
/// @param tax Price fixed by the Exchange.
/// @param whitelistedBuyer Address of the Whitelisted Buyer
/// @param quotePrice If Buyer quoted price in fiat currency
/// @param slippage Price Limit based on the percentage
/// @param buyer Address of the buyer
struct Order {
string uuid;
uint256 tokenId;
address tokenContract;
uint256 quantity;
address payable tokenOwner;
uint256 fixedPrice;
address paymentToken;
uint256 tax;
address whitelistedBuyer;
uint256 quotePrice;
uint256 slippage;
address buyer;
}
/// @notice The Bid History for a Token
/// @param bidder Address of the Bidder
/// @param quotePrice Price quote by them
/// @param paymentAddress Payment ERC20 Address by the Bidder
struct BidHistory {
address bidder;
uint256 quotePrice;
address paymentAddress;
}
// Interface ID constants
bytes4 private constant ERC721_INTERFACE_ID = 0x80ac58cd;
bytes4 private constant ERC1155_INTERFACE_ID = 0xd9b67a26;
bytes4 private constant ROYALTIES_CREATORCORE_INTERFACE_ID = 0xbb3bafd6;
bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a;
bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584;
bytes4 private constant _INTERFACE_ID_ROYALTIES_FOUNDATION = 0xd5a06d4c;
// 1 Ether in Wei, 10^18
int64 private constant ONE_ETH_WEI = 1e18;
// ERC20 address of the Native token (can be WETH, WBNB, WMATIC, etc)
address public wrappedNativeToken;
// Platform Address
address payable public platformAddress;
// Fee percentage to the Platform
uint256 public platformFeePercentage;
// The address of the Price Feed Aggregator to use via this contract
address public priceFeedAddress;
// Address of the Admin
address public adminAddress;
// Address of the Royalty Registry
address public royaltyRegistryAddress;
// Status of the Royalty Contract Active or not
bool public royaltyActive;
// UUID validation on orders
mapping(string => bool) private usedUUID;
/// @notice Emitted when an Buy Event is completed
/// @param uuid The generated Unique uuid
/// @param tokenId The NFT tokenId
/// @param tokenContract The NFT Contract address
/// @param quantity The total quantity of the ERC1155 token if ERC721 it is 1
/// @param tokenOwner The address of the Token Owner
/// @param buyer Address of the buyer
/// @param amount Fixed Price
/// @param paymentToken ERC20 address chosen by TokenOwner for Payments
/// @param marketplaceAddress Address of the Platform
/// @param platformFee Fee sent to the Platform Address
event BuyExecuted(
string uuid,
uint256 indexed tokenId,
address indexed tokenContract,
uint256 quantity,
address indexed tokenOwner,
address buyer,
uint256 amount,
uint256 tax,
address paymentToken,
address marketplaceAddress,
uint256 platformFee
);
/// @notice Emitted when an Sell(Accept Offer) Event is completed
/// @param uuid The generated Unique uuid
/// @param tokenId The NFT tokenId
/// @param tokenContract The NFT Contract address
/// @param quantity The total quantity of the ERC1155 token if ERC721 it is 1
/// @param tokenOwner The address of the Token Owner
/// @param buyer Address of the buyer
/// @param amount Fixed Price
/// @param paymentToken ERC20 address chosen by TokenOwner for Payments
/// @param marketplaceAddress Address of the Platform
/// @param platformFee Fee sent to the Platform Address
event SaleExecuted(
string uuid,
uint256 indexed tokenId,
address indexed tokenContract,
uint256 quantity,
address indexed tokenOwner,
address buyer,
uint256 amount,
uint256 tax,
address paymentToken,
address marketplaceAddress,
uint256 platformFee
);
/// @notice Emitted when an End Auction Event is completed
/// @param uuid The generated Unique uuid
/// @param tokenId The NFT tokenId
/// @param tokenContract The NFT Contract address
/// @param quantity The total quantity of the ERC1155 token if ERC721 it is 1
/// @param tokenOwner The address of the Token Owner
/// @param highestBidder Address of the highest bidder
/// @param amount Fixed Price
/// @param paymentToken ERC20 address chosen by TokenOwner for Payments
/// @param marketplaceAddress Address of the Platform
/// @param platformFee Fee sent to the Platform Address
/// @param bidderlist Bid History List
event AuctionClosed(
string uuid,
uint256 indexed tokenId,
address indexed tokenContract,
uint256 quantity,
address indexed tokenOwner,
address highestBidder,
uint256 amount,
uint256 tax,
address paymentToken,
address marketplaceAddress,
uint256 platformFee,
BidHistory[] bidderlist
);
/// @notice Emitted when an Royalty Payout is executed
/// @param tokenId The NFT tokenId
/// @param tokenContract The NFT Contract address
/// @param recipient Address of the Royalty Recipient
/// @param amount Amount sent to the royalty recipient address
event RoyaltyPayout(
address tokenContract,
uint256 tokenId,
address recipient,
uint256 amount
);
/// @notice Emitted when an Constructor is executed
/// @param wrappedNativeToken Native ERC20 Address
/// @param platformAddress The Platform Address
/// @param platformFeePercentage The Platform fee percentage
/// @param priceFeedAddress PriceFeed Contract Address
/// @param owner Owner of the Contract
/// @param adminAddress Admin Address
/// @param royaltyRegistryAddress Royalty Registry Address
/// @param royaltyActive Royalty Address is active or not
event ConstructorExecuted(
address wrappedNativeToken,
address platformAddress,
uint256 platformFeePercentage,
address priceFeedAddress,
address owner,
address adminAddress,
address royaltyRegistryAddress,
bool royaltyActive
);
/// @notice Emitted when an Withdraw Payout is executed
/// @param toAddress To Address amount is transferred
/// @param amount The amount transferred
event WithdrawPayout(address toAddress, uint256 amount);
/// @notice Emitted when an Address updation is executed
/// @param UpdateAddress To Address amount is transferred
event UpdatedAddress(address UpdateAddress);
/// @notice Emitted when an percentage fee is updated
/// @param amount The amount transferred
event UpdateFeePercentage(uint256 amount);
/// @notice Emitted when an active status is updated
/// @param isActive Active status
event UpdateStatus(bool isActive);
/// @notice Modifier to check only the owner or admin calls the function
modifier onlyOwner() {
require(
msg.sender == owner || msg.sender == adminAddress,
"sender is neither owner nor adminAddress"
);
_;
}
/// @param _wrappedNativeToken Native ERC20 Address
/// @param _platformAddress The Platform Address
/// @param _platformFeePercentage The Platform fee percentage
/// @param _priceFeedAddress PriceFeed Contract Address
/// @param _adminAddress Admin Address
/// @param _royaltyRegistryAddress Royalty Registry Address
/// @param _royaltyActive Royalty Address is active or not
constructor(
address _wrappedNativeToken,
address _platformAddress,
uint256 _platformFeePercentage,
address _priceFeedAddress,
address _adminAddress,
address _royaltyRegistryAddress,
bool _royaltyActive
) {
require(_platformAddress != address(0), "Invalid Platform Address");
require(_priceFeedAddress != address(0), "Invalid PriceFeed Address");
require(
_wrappedNativeToken != address(0),
"Invalid WrappedNativeToken Address"
);
require(
_platformFeePercentage <= 10_000,
"platformFee should not be more than 100 %"
);
require(_adminAddress != address(0), "Invalid Admin Address");
require(
_royaltyRegistryAddress != address(0),
"Invalid Royalty Registry Address"
);
wrappedNativeToken = _wrappedNativeToken;
platformAddress = payable(_platformAddress);
platformFeePercentage = _platformFeePercentage;
priceFeedAddress = _priceFeedAddress;
owner = msg.sender;
adminAddress = _adminAddress;
royaltyRegistryAddress = _royaltyRegistryAddress;
royaltyActive = _royaltyActive;
emit ConstructorExecuted(
wrappedNativeToken,
platformAddress,
platformFeePercentage,
priceFeedAddress,
owner,
adminAddress,
royaltyRegistryAddress,
royaltyActive
);
}
/// @notice Buy the listed token with the sellersignature
/// @param order Order struct consists of the listedtoken details
/// @param sellerSignature Signature generated when signing the hash(order details) by the seller
/// @param payableToken ERC20 address chosen by Buyer for Payments
function buy(
Order memory order,
bytes memory sellerSignature,
address payableToken
) external payable nonReentrant {
// Validating the InterfaceID
require(
(IERC165(order.tokenContract).supportsInterface(
ERC721_INTERFACE_ID
) ||
IERC165(order.tokenContract).supportsInterface(
ERC1155_INTERFACE_ID
)),
"tokenContract does not support ERC721 or ERC1155 interface"
);
// Validating the caller to be the buyer
require(order.buyer == msg.sender, "msg.sender should be the buyer");
// Validating address if whitelisted address is present
require(
order.whitelistedBuyer == address(0) ||
order.whitelistedBuyer == msg.sender,
"can only be called by whitelisted buyer"
);
// Validating the paymentToken chosen by Seller
require(
order.paymentToken == wrappedNativeToken ||
order.paymentToken == address(0),
"should provide only supported currencies"
);
// Validating the payableToken chosen by Buyer
require(
payableToken == wrappedNativeToken || payableToken == address(0),
"payableToken must be supported"
);
// Checking sufficient balance of ether
if (payableToken == address(0)) {
require(
msg.value >= (order.fixedPrice + order.tax),
"insufficient amount"
);
} else if (payableToken == wrappedNativeToken) {
require(
IERC20(payableToken).balanceOf(order.buyer) >=
(order.fixedPrice + order.tax),
"insufficient balance"
);
require(
IERC20(payableToken).allowance(order.buyer, address(this)) >=
(order.fixedPrice + order.tax),
"insufficient token allowance"
);
}
// Validating signatures
require(
_verifySignature(order, sellerSignature, order.tokenOwner),
"Invalid seller signature"
);
// Validating UUID
require(!usedUUID[order.uuid], "UUID already used");
// Updating the Used UUID
usedUUID[order.uuid] = true;
// Validating the Price Conversion if quoteprice is given
if (order.quotePrice > 0) {
_validatePrice(
SafeCast.toInt256(order.fixedPrice),
SafeCast.toInt256(order.quotePrice),
payableToken,
SafeCast.toInt256(order.slippage)
);
}
uint256 remainingProfit = order.fixedPrice;
// Tax Settlement
if (platformAddress != address(0) && order.tax > 0) {
_handlePayment(
order.buyer,
platformAddress,
order.paymentToken,
order.tax,
payableToken
);
}
// PlatformFee Settlement
uint256 platformFee = 0;
if (platformAddress != address(0) && platformFeePercentage > 0) {
platformFee = (remainingProfit * platformFeePercentage) / 10_000;
remainingProfit = remainingProfit - platformFee;
_handlePayment(
order.buyer,
platformAddress,
order.paymentToken,
platformFee,
payableToken
);
}
// Royalty Fee Payout Settlement
remainingProfit = _handleRoyaltyEnginePayout(
order.tokenContract,
order.tokenId,
remainingProfit,
order.paymentToken,
order.buyer,
payableToken
);
// Transfer the balance to the tokenOwner
_handlePayment(
order.buyer,
order.tokenOwner,
order.paymentToken,
remainingProfit,
payableToken
);
// Transferring Tokens
_tokenTransaction(order);
emit BuyExecuted(
order.uuid,
order.tokenId,
order.tokenContract,
order.quantity,
order.tokenOwner,
order.buyer,
order.fixedPrice,
order.tax,
order.paymentToken,
platformAddress,
platformFee
);
}
/// @notice Sell the listed token with the BuyerSignature - Accepting the Offer
/// @param order Order struct consists of the listedtoken details
/// @param buyerSignature Signature generated when signing the hash(order details) by the buyer
/// @param expirationTime Expiration Time for the offer
/// @param receivableToken ERC20 address chosen by Buyer for Payments
function sell(
Order memory order,
bytes memory buyerSignature,
uint256 expirationTime,
address receivableToken
) external nonReentrant {
// Validating the InterfaceID
require(
(IERC165(order.tokenContract).supportsInterface(
ERC721_INTERFACE_ID
) ||
IERC165(order.tokenContract).supportsInterface(
ERC1155_INTERFACE_ID
)),
"tokenContract does not support ERC721 or ERC1155 interface"
);
// Validating that seller owns a sufficient amount of the token to be listed
if (
IERC165(order.tokenContract).supportsInterface(ERC1155_INTERFACE_ID)
) {
uint256 tokenQty = IERC1155(order.tokenContract).balanceOf(
msg.sender,
order.tokenId
);
require(
order.quantity <= tokenQty && order.quantity > 0,
"Insufficient token balance"
);
}
// Validating msg.sender to be Token Owner
require(
order.tokenOwner == msg.sender,
"msg.sender should be token owner"
);
// Validating the expiration time
require(
expirationTime >= block.timestamp,
"expirationTime must be a future timestamp"
);
// Validating the receivableToken chosen by Seller
require(
(receivableToken == wrappedNativeToken ||
receivableToken == address(0)) &&
order.paymentToken == wrappedNativeToken,
"both payment and currency tokens must be supported"
);
// Validating buyer's ERC20 balance
if (order.paymentToken == wrappedNativeToken) {
require(
IERC20(order.paymentToken).balanceOf(order.buyer) >=
(order.fixedPrice + order.tax),
"insufficient balance"
);
require(
IERC20(order.paymentToken).allowance(
order.buyer,
address(this)
) >= (order.fixedPrice + order.tax),
"insufficient token allowance"
);
}
// Validating address if whitelisted address is present
require(
order.whitelistedBuyer == address(0) ||
order.whitelistedBuyer == order.buyer,
"can only be called by whitelisted buyer"
);
// Validating signatures
require(
_verifySignature(order, buyerSignature, order.buyer),
"Invalid buyer signature"
);
// Validating UUID
require(!usedUUID[order.uuid], "UUID already used");
// Updating the Used UUID
usedUUID[order.uuid] = true;
// Validating the Price Conversion if quoteprice is given
if (order.quotePrice > 0) {
_validatePrice(
SafeCast.toInt256(order.fixedPrice),
SafeCast.toInt256(order.quotePrice),
receivableToken,
SafeCast.toInt256(order.slippage)
);
}
uint256 remainingProfit = order.fixedPrice;
// Tax settlement
if (platformAddress != address(0) && order.tax > 0) {
_handlePayment(
order.buyer,
platformAddress,
receivableToken,
order.tax,
order.paymentToken
);
}
uint256 platformFee = 0;
// PlatformFee Settlement
if (platformAddress != address(0) && platformFeePercentage > 0) {
platformFee = (remainingProfit * platformFeePercentage) / 10_000;
remainingProfit = remainingProfit - platformFee;
_handlePayment(
order.buyer,
platformAddress,
receivableToken,
platformFee,
order.paymentToken
);
}
// Royalty Fee Payout Settlement
remainingProfit = _handleRoyaltyEnginePayout(
order.tokenContract,
order.tokenId,
remainingProfit,
receivableToken,
order.buyer,
order.paymentToken
);
// Transfer the balance to the tokenOwner
_handlePayment(
order.buyer,
payable(msg.sender),
receivableToken,
remainingProfit,
order.paymentToken
);
// Transferring Tokens
_tokenTransaction(order);
emit SaleExecuted(
order.uuid,
order.tokenId,
order.tokenContract,
order.quantity,
msg.sender,
order.buyer,
order.fixedPrice,
order.tax,
receivableToken,
platformAddress,
platformFee
);
}
/// @notice Ending an Auction based on the signature verification with highest bidder
/// @param order Order struct consists of the listedtoken details
/// @param sellerSignature Signature generated when signing the hash(order details) by the seller
/// @param buyerSignature Signature generated when signing the hash(order details) by the buyer
/// @param payableToken ERC20 address chosen by Buyer for Payments
/// @param bidHistory Bidhistory which contains the list of bidders with the details
function executeAuction(
Order memory order,
bytes memory sellerSignature,
bytes memory buyerSignature,
address payableToken,
BidHistory[] memory bidHistory
) external payable nonReentrant {
// Validating the InterfaceID
require(
(IERC165(order.tokenContract).supportsInterface(
ERC721_INTERFACE_ID
) ||
IERC165(order.tokenContract).supportsInterface(
ERC1155_INTERFACE_ID
)),
"tokenContract does not support ERC721 or ERC1155 interface"
);
// Validating the msg.sender with admin or buyer
require(
order.buyer == msg.sender || adminAddress == msg.sender,
"Only Buyer or the Admin can call this function"
);
// Validating Admin can only call only if the payableToken is WrappedNativeToken
if (adminAddress == msg.sender) {
require(
payableToken == wrappedNativeToken,
"Only Admin can call this function if payableToken is WrappedNativeToken"
);
}
// Validating address if whitelisted address is present
require(
order.whitelistedBuyer == address(0) ||
order.whitelistedBuyer == msg.sender,
"can only be called by whitelisted buyer"
);
// Validating the paymentToken chosen by Seller
require(
order.paymentToken == wrappedNativeToken ||
order.paymentToken == address(0),
"can only pay with a supported currency"
);
// Validating the payableToken chosen by Buyer
require(
payableToken == wrappedNativeToken || payableToken == address(0),
"payableToken must be supported"
);
// Checking sufficient balance of ether
if (payableToken == address(0)) {
require(
msg.value >= (order.fixedPrice + order.tax),
"insufficient amount"
);
} else if (payableToken == wrappedNativeToken) {
require(
IERC20(payableToken).balanceOf(order.buyer) >=
(order.fixedPrice + order.tax),
"insufficient balance"
);
require(
IERC20(payableToken).allowance(order.buyer, address(this)) >=
(order.fixedPrice + order.tax),
"insufficient token allowance"
);
}
// Validating seller signature
require(
_verifySignature(order, sellerSignature, order.tokenOwner),
"Invalid seller signature"
);
// Validating buyer signature
require(
_verifySignature(order, buyerSignature, order.buyer),
"Invalid buyer signature"
);
// Validating UUID
require(!usedUUID[order.uuid], "UUID already used");
// Updating the Used UUID
usedUUID[order.uuid] = true;
// Validating the Price Conversion if quoteprice is given
if (order.quotePrice > 0) {
_validatePrice(
SafeCast.toInt256(order.fixedPrice),
SafeCast.toInt256(order.quotePrice),
payableToken,
SafeCast.toInt256(order.slippage)
);
}
uint256 remainingProfit = order.fixedPrice;
// Tax Settlement
if (platformAddress != address(0) && order.tax > 0) {
_handlePayment(
order.buyer,
platformAddress,
order.paymentToken,
order.tax,
payableToken
);
}
// PlatformFee Settlement
uint256 platformFee = 0;
if (platformAddress != address(0) && platformFeePercentage > 0) {
platformFee = (remainingProfit * platformFeePercentage) / 10_000;
remainingProfit = remainingProfit - platformFee;
_handlePayment(
order.buyer,
platformAddress,
order.paymentToken,
platformFee,
payableToken
);
}
// Royalty Fee Payout Settlement
remainingProfit = _handleRoyaltyEnginePayout(
order.tokenContract,
order.tokenId,
remainingProfit,
order.paymentToken,
order.buyer,
payableToken
);
// Transfer the balance to the tokenOwner
_handlePayment(
order.buyer,
order.tokenOwner,
order.paymentToken,
remainingProfit,
payableToken
);
// Transferring the Tokens
_tokenTransaction(order);
emit AuctionClosed(
order.uuid,
order.tokenId,
order.tokenContract,
order.quantity,
order.tokenOwner,
order.buyer,
order.fixedPrice,
order.tax,
order.paymentToken,
platformAddress,
platformFee,
bidHistory
);
}
/// @notice Transferring the tokens based on the from and to Address
/// @param _order Order struct consists of the listedtoken details
function _tokenTransaction(Order memory _order) internal {
if (
IERC165(_order.tokenContract).supportsInterface(ERC721_INTERFACE_ID)
) {
require(
IERC721(_order.tokenContract).ownerOf(_order.tokenId) ==
_order.tokenOwner,
"maker is not the owner"
);
// Transferring the ERC721
IERC721(_order.tokenContract).safeTransferFrom(
_order.tokenOwner,
_order.buyer,
_order.tokenId
);
}
if (
IERC165(_order.tokenContract).supportsInterface(
ERC1155_INTERFACE_ID
)
) {
uint256 ownerBalance = IERC1155(_order.tokenContract).balanceOf(
_order.tokenOwner,
_order.tokenId
);
require(
_order.quantity <= ownerBalance && _order.quantity > 0,
"Insufficient token balance"
);
// Transferring the ERC1155
IERC1155(_order.tokenContract).safeTransferFrom(
_order.tokenOwner,
_order.buyer,
_order.tokenId,
_order.quantity,
"0x"
);
}
}
/// @notice Settle the Payment based on the given parameters
/// @param _from Address from whom we get the payment amount to settle
/// @param _to Address to whom need to settle the payment
/// @param _paymentToken Address of the ERC20 Payment Token
/// @param _amount Amount to be transferred
/// @param _currencyToken Address of the ERC20 Token
function _handlePayment(
address _from,
address payable _to,
address _paymentToken,
uint256 _amount,
address _currencyToken
) internal {
bool success;
if (_paymentToken == address(0) && _currencyToken == address(0)) {
(success, ) = _to.call{value: _amount}(new bytes(0));
require(success, "transaction failed");
} else if (
_paymentToken == wrappedNativeToken && _currencyToken == address(0)
) {
IWrappedNativeToken(wrappedNativeToken).deposit{value: _amount}();
IERC20(_paymentToken).safeTransfer(_to, _amount);
} else if (
_paymentToken == address(0) && _currencyToken == wrappedNativeToken
) {
IERC20(wrappedNativeToken).safeTransferFrom(
_from,
address(this),
_amount
);
IWrappedNativeToken(wrappedNativeToken).withdraw(_amount);
(success, ) = _to.call{value: _amount}(new bytes(0));
require(success, "transaction failed");
} else if (_paymentToken == _currencyToken) {
IERC20(_paymentToken).safeTransferFrom(_from, _to, _amount);
}
}
/// @notice Settle the Royalty Payment based on the given parameters
/// @param _tokenContract The NFT Contract address
/// @param _tokenId The NFT tokenId
/// @param _amount Amount to be transferred
/// @param _payoutCurrency Address of the ERC20 Payout
/// @param _buyer From Address for the ERC20 Payout
/// @param _currencyToken Address of the ERC20 Token
/// @param amountRemaining Remaining amount from the total payout
function _handleRoyaltyEnginePayout(
address _tokenContract,
uint256 _tokenId,
uint256 _amount,
address _payoutCurrency,
address _buyer,
address _currencyToken
) internal returns (uint256 amountRemaining) {
// Store the initial amount
amountRemaining = _amount;
uint256 feeAmount;
address payable[] memory recipients;
uint256[] memory bps;
// Verifying whether the token contract supports Royalties of supported interfaces
if (royaltyActive) {
(recipients, bps) = IRoyaltyEngine(royaltyRegistryAddress)
.getRoyalty(_tokenContract, _tokenId);
}
// Store the number of recipients
uint256 totalRecipients = recipients.length;
// If there are no royalties, return the initial amount
if (totalRecipients == 0) return _amount;
// pay out each royalty
for (uint256 i = 0; i < totalRecipients; ) {
// Cache the recipient and amount
address payable recipient = recipients[i];
// Calculate royalty basis points
feeAmount = (bps[i] * _amount) / 10_000;
// Ensure that there's still enough balance remaining
require(amountRemaining >= feeAmount, "insolvent");
_handlePayment(
_buyer,
recipient,
_payoutCurrency,
feeAmount,
_currencyToken
);
emit RoyaltyPayout(_tokenContract, _tokenId, recipient, feeAmount);
// Cannot underflow as remaining amount is ensured to be greater than or equal to royalty amount
unchecked {
amountRemaining -= feeAmount;
++i;
}
}
return amountRemaining;
}
/// @notice Verifies the Signature with the required Signer
/// @param _order Order struct consists of the listedtoken details
/// @param _signature Signature generated when signing the hash(order details) by the signer
/// @param _signer Address of the Signer
/// @param isVerified Signature is verified or not
function _verifySignature(
Order memory _order,
bytes memory _signature,
address _signer
) internal view returns (bool isVerified) {
return
keccak256(
abi.encode(
_order.uuid,
_order.tokenId,
_order.tokenContract,
_order.quantity,
_order.tokenOwner,
_order.fixedPrice,
_order.paymentToken,
block.chainid
)
).toEthSignedMessageHash().recover(_signature) == _signer;
}
/// @notice Validate the quoted price with the ERC20 address price
/// @param _basePrice Price fixed by the TokenOwner
/// @param _destPrice Quoted price in fiat currency
/// @param _saleCurrency ERC20 address chosen by TokenOwner for Payments
/// @param _slippage Price Limit based on the percentage
function _validatePrice(
int256 _basePrice,
int256 _destPrice,
address _saleCurrency,
int256 _slippage
) internal {
// Getting the latest Price from the PriceFeed Contract
(int256 price, uint8 roundId) = IPriceFeed(priceFeedAddress)
.getLatestPrice(_saleCurrency);
// Validate the exact fixed Price with the quoted Price
require(
(((_destPrice / ONE_ETH_WEI) +
(((_destPrice * _slippage) / ONE_ETH_WEI) / 100)) >=
(price * _basePrice) /
(SafeCast.toInt256(10**roundId) * ONE_ETH_WEI)),
"quotePrice with slippage is less than the fixedPrice"
);
}
/// @notice Withdraw the funds to contract owner
function withdraw() external onlyOwner {
require(address(this).balance > 0, "zero balance in the contract");
bool success;
address payable to = payable(msg.sender);
(success, ) = to.call{value: address(this).balance}(new bytes(0));
require(success, "withdrawal failed");
emit WithdrawPayout(to, address(this).balance);
}
/// @notice Update the WrappedNative Token Address
/// @param _wrappedNativeToken Native ERC20 Address
function updateWrappedNativeToken(address _wrappedNativeToken)
external
onlyOwner
{
require(
_wrappedNativeToken != address(0) &&
_wrappedNativeToken != wrappedNativeToken,
"Invalid WrappedNativeToken Address"
);
wrappedNativeToken = _wrappedNativeToken;
emit UpdatedAddress(wrappedNativeToken);
}
/// @notice Update the PriceFeed Address
/// @param _priceFeedAddress PriceFeed Contract Address
function updatePriceFeedAddress(address _priceFeedAddress)
external
onlyOwner
{
require(
_priceFeedAddress != address(0) &&
_priceFeedAddress != priceFeedAddress,
"Invalid PriceFeed Address"
);
priceFeedAddress = _priceFeedAddress;
emit UpdatedAddress(priceFeedAddress);
}
/// @notice Update the admin Address
/// @param _adminAddress Admin Address
function updateAdminAddress(address _adminAddress) external onlyOwner {
require(
_adminAddress != address(0) && _adminAddress != adminAddress,
"Invalid Admin Address"
);
adminAddress = _adminAddress;
emit UpdatedAddress(adminAddress);
}
/// @notice Update the platform Address
/// @param _platformAddress The Platform Address
function updatePlatformAddress(address _platformAddress)
external
onlyOwner
{
require(
_platformAddress != address(0) &&
_platformAddress != platformAddress,
"Invalid Platform Address"
);
platformAddress = payable(_platformAddress);
emit UpdatedAddress(platformAddress);
}
/// @notice Update the Platform Fee Percentage
/// @param _platformFeePercentage The Platform fee percentage
function updatePlatformFeePercentage(uint256 _platformFeePercentage)
external
onlyOwner
{
require(
_platformFeePercentage <= 10_000,
"platformFee should not be more than 100 %"
);
platformFeePercentage = _platformFeePercentage;
emit UpdateFeePercentage(platformFeePercentage);
}
/// @notice Update the Royalty Registry Address
/// @param _royaltyRegistryAddress The Royalty Registry Address
function updateRoyaltyRegistryAddress(address _royaltyRegistryAddress)
external
onlyOwner
{
require(
_royaltyRegistryAddress != address(0) &&
_royaltyRegistryAddress != royaltyRegistryAddress,
"Invalid Royalty Registry Address"
);
royaltyRegistryAddress = _royaltyRegistryAddress;
emit UpdatedAddress(platformAddress);
}
/// @notice Update the Royalty Active Status
/// @param _royaltyStatus The Royalty Active Status true or false
function updateRoyaltyActive(bool _royaltyStatus) external onlyOwner {
royaltyActive = _royaltyStatus;
emit UpdateStatus(royaltyActive);
}
/// @notice Get the Royalty Info Details against the collection and TokenID
/// @param collectionAddress The Collection Address of the token
/// @param tokenId The TokenId value
/// @param recipients List of Recipient Address
/// @param bps List of Basis points
function getRoyaltyInfo(address collectionAddress, uint256 tokenId)
external
view
returns (address payable[] memory recipients, uint256[] memory bps)
{
require(royaltyActive, "The Royalty Address is inactive.");
(
recipients,
bps // Royalty amount denominated in basis points
) = IRoyaltyEngine(royaltyRegistryAddress).getRoyalty(
collectionAddress,
tokenId
);
}
receive() external payable {}
fallback() external payable {}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
/// @custom:oz-upgrades-unsafe-allow constructor
constructor () {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeCast.sol)
pragma solidity ^0.8.0;
/**
* @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
* checks.
*
* Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
* easily result in undesired exploitation or bugs, since developers usually
* assume that overflows raise errors. `SafeCast` restores this intuition by
* reverting the transaction when such an operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*
* Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
* all math on `uint256` and `int256` and then downcasting.
*/
library SafeCast {
/**
* @dev Returns the downcasted uint224 from uint256, reverting on
* overflow (when the input is greater than largest uint224).
*
* Counterpart to Solidity's `uint224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*/
function toUint224(uint256 value) internal pure returns (uint224) {
require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
return uint224(value);
}
/**
* @dev Returns the downcasted uint128 from uint256, reverting on
* overflow (when the input is greater than largest uint128).
*
* Counterpart to Solidity's `uint128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*/
function toUint128(uint256 value) internal pure returns (uint128) {
require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
return uint128(value);
}
/**
* @dev Returns the downcasted uint96 from uint256, reverting on
* overflow (when the input is greater than largest uint96).
*
* Counterpart to Solidity's `uint96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*/
function toUint96(uint256 value) internal pure returns (uint96) {
require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
return uint96(value);
}
/**
* @dev Returns the downcasted uint64 from uint256, reverting on
* overflow (when the input is greater than largest uint64).
*
* Counterpart to Solidity's `uint64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*/
function toUint64(uint256 value) internal pure returns (uint64) {
require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
return uint64(value);
}
/**
* @dev Returns the downcasted uint32 from uint256, reverting on
* overflow (when the input is greater than largest uint32).
*
* Counterpart to Solidity's `uint32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*/
function toUint32(uint256 value) internal pure returns (uint32) {
require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
return uint32(value);
}
/**
* @dev Returns the downcasted uint16 from uint256, reverting on
* overflow (when the input is greater than largest uint16).
*
* Counterpart to Solidity's `uint16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*/
function toUint16(uint256 value) internal pure returns (uint16) {
require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
return uint16(value);
}
/**
* @dev Returns the downcasted uint8 from uint256, reverting on
* overflow (when the input is greater than largest uint8).
*
* Counterpart to Solidity's `uint8` operator.
*
* Requirements:
*
* - input must fit into 8 bits.
*/
function toUint8(uint256 value) internal pure returns (uint8) {
require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
return uint8(value);
}
/**
* @dev Converts a signed int256 into an unsigned uint256.
*
* Requirements:
*
* - input must be greater than or equal to 0.
*/
function toUint256(int256 value) internal pure returns (uint256) {
require(value >= 0, "SafeCast: value must be positive");
return uint256(value);
}
/**
* @dev Returns the downcasted int128 from int256, reverting on
* overflow (when the input is less than smallest int128 or
* greater than largest int128).
*
* Counterpart to Solidity's `int128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*
* _Available since v3.1._
*/
function toInt128(int256 value) internal pure returns (int128) {
require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
return int128(value);
}
/**
* @dev Returns the downcasted int64 from int256, reverting on
* overflow (when the input is less than smallest int64 or
* greater than largest int64).
*
* Counterpart to Solidity's `int64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*
* _Available since v3.1._
*/
function toInt64(int256 value) internal pure returns (int64) {
require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
return int64(value);
}
/**
* @dev Returns the downcasted int32 from int256, reverting on
* overflow (when the input is less than smallest int32 or
* greater than largest int32).
*
* Counterpart to Solidity's `int32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*
* _Available since v3.1._
*/
function toInt32(int256 value) internal pure returns (int32) {
require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
return int32(value);
}
/**
* @dev Returns the downcasted int16 from int256, reverting on
* overflow (when the input is less than smallest int16 or
* greater than largest int16).
*
* Counterpart to Solidity's `int16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*
* _Available since v3.1._
*/
function toInt16(int256 value) internal pure returns (int16) {
require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
return int16(value);
}
/**
* @dev Returns the downcasted int8 from int256, reverting on
* overflow (when the input is less than smallest int8 or
* greater than largest int8).
*
* Counterpart to Solidity's `int8` operator.
*
* Requirements:
*
* - input must fit into 8 bits.
*
* _Available since v3.1._
*/
function toInt8(int256 value) internal pure returns (int8) {
require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
return int8(value);
}
/**
* @dev Converts an unsigned uint256 into a signed int256.
*
* Requirements:
*
* - input must be less than or equal to maxInt256.
*/
function toInt256(uint256 value) internal pure returns (int256) {
// Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
return int256(value);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
{
"compilationTarget": {
"contracts/mojito/marketplace/Marketplace.sol": "Marketplace"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
}
[{"inputs":[{"internalType":"address","name":"_wrappedNativeToken","type":"address"},{"internalType":"address","name":"_platformAddress","type":"address"},{"internalType":"uint256","name":"_platformFeePercentage","type":"uint256"},{"internalType":"address","name":"_priceFeedAddress","type":"address"},{"internalType":"address","name":"_adminAddress","type":"address"},{"internalType":"address","name":"_royaltyRegistryAddress","type":"address"},{"internalType":"bool","name":"_royaltyActive","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uuid","type":"string"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"tokenContract","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":true,"internalType":"address","name":"tokenOwner","type":"address"},{"indexed":false,"internalType":"address","name":"highestBidder","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tax","type":"uint256"},{"indexed":false,"internalType":"address","name":"paymentToken","type":"address"},{"indexed":false,"internalType":"address","name":"marketplaceAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"platformFee","type":"uint256"},{"components":[{"internalType":"address","name":"bidder","type":"address"},{"internalType":"uint256","name":"quotePrice","type":"uint256"},{"internalType":"address","name":"paymentAddress","type":"address"}],"indexed":false,"internalType":"struct Marketplace.BidHistory[]","name":"bidderlist","type":"tuple[]"}],"name":"AuctionClosed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uuid","type":"string"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"tokenContract","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":true,"internalType":"address","name":"tokenOwner","type":"address"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tax","type":"uint256"},{"indexed":false,"internalType":"address","name":"paymentToken","type":"address"},{"indexed":false,"internalType":"address","name":"marketplaceAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"platformFee","type":"uint256"}],"name":"BuyExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wrappedNativeToken","type":"address"},{"indexed":false,"internalType":"address","name":"platformAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"platformFeePercentage","type":"uint256"},{"indexed":false,"internalType":"address","name":"priceFeedAddress","type":"address"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"address","name":"adminAddress","type":"address"},{"indexed":false,"internalType":"address","name":"royaltyRegistryAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"royaltyActive","type":"bool"}],"name":"ConstructorExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenContract","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RoyaltyPayout","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uuid","type":"string"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"tokenContract","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":true,"internalType":"address","name":"tokenOwner","type":"address"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tax","type":"uint256"},{"indexed":false,"internalType":"address","name":"paymentToken","type":"address"},{"indexed":false,"internalType":"address","name":"marketplaceAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"platformFee","type":"uint256"}],"name":"SaleExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UpdateFeePercentage","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"UpdateStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"UpdateAddress","type":"address"}],"name":"UpdatedAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"toAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawPayout","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"adminAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"uuid","type":"string"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"tokenContract","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address payable","name":"tokenOwner","type":"address"},{"internalType":"uint256","name":"fixedPrice","type":"uint256"},{"internalType":"address","name":"paymentToken","type":"address"},{"internalType":"uint256","name":"tax","type":"uint256"},{"internalType":"address","name":"whitelistedBuyer","type":"address"},{"internalType":"uint256","name":"quotePrice","type":"uint256"},{"internalType":"uint256","name":"slippage","type":"uint256"},{"internalType":"address","name":"buyer","type":"address"}],"internalType":"struct Marketplace.Order","name":"order","type":"tuple"},{"internalType":"bytes","name":"sellerSignature","type":"bytes"},{"internalType":"address","name":"payableToken","type":"address"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"uuid","type":"string"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"tokenContract","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address payable","name":"tokenOwner","type":"address"},{"internalType":"uint256","name":"fixedPrice","type":"uint256"},{"internalType":"address","name":"paymentToken","type":"address"},{"internalType":"uint256","name":"tax","type":"uint256"},{"internalType":"address","name":"whitelistedBuyer","type":"address"},{"internalType":"uint256","name":"quotePrice","type":"uint256"},{"internalType":"uint256","name":"slippage","type":"uint256"},{"internalType":"address","name":"buyer","type":"address"}],"internalType":"struct Marketplace.Order","name":"order","type":"tuple"},{"internalType":"bytes","name":"sellerSignature","type":"bytes"},{"internalType":"bytes","name":"buyerSignature","type":"bytes"},{"internalType":"address","name":"payableToken","type":"address"},{"components":[{"internalType":"address","name":"bidder","type":"address"},{"internalType":"uint256","name":"quotePrice","type":"uint256"},{"internalType":"address","name":"paymentAddress","type":"address"}],"internalType":"struct Marketplace.BidHistory[]","name":"bidHistory","type":"tuple[]"}],"name":"executeAuction","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"collectionAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRoyaltyInfo","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"platformAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"platformFeePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceFeedAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"uuid","type":"string"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"tokenContract","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address payable","name":"tokenOwner","type":"address"},{"internalType":"uint256","name":"fixedPrice","type":"uint256"},{"internalType":"address","name":"paymentToken","type":"address"},{"internalType":"uint256","name":"tax","type":"uint256"},{"internalType":"address","name":"whitelistedBuyer","type":"address"},{"internalType":"uint256","name":"quotePrice","type":"uint256"},{"internalType":"uint256","name":"slippage","type":"uint256"},{"internalType":"address","name":"buyer","type":"address"}],"internalType":"struct Marketplace.Order","name":"order","type":"tuple"},{"internalType":"bytes","name":"buyerSignature","type":"bytes"},{"internalType":"uint256","name":"expirationTime","type":"uint256"},{"internalType":"address","name":"receivableToken","type":"address"}],"name":"sell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_adminAddress","type":"address"}],"name":"updateAdminAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_platformAddress","type":"address"}],"name":"updatePlatformAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_platformFeePercentage","type":"uint256"}],"name":"updatePlatformFeePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_priceFeedAddress","type":"address"}],"name":"updatePriceFeedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_royaltyStatus","type":"bool"}],"name":"updateRoyaltyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyRegistryAddress","type":"address"}],"name":"updateRoyaltyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wrappedNativeToken","type":"address"}],"name":"updateWrappedNativeToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wrappedNativeToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]