Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- HexToysAddNFTCollection
- Optimization enabled
- true
- Compiler version
- v0.8.17+commit.8df45f5f
- Optimization runs
- 200
- EVM Version
- default
- Verified at
- 2023-06-28T15:23:22.501428Z
contracts/nft/HexToysAddNFTCollection.sol
// NFTImportor contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
interface INFTCollection {
function owner() external view returns (address);
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
contract HexToysAddNFTCollection is OwnableUpgradeable {
using SafeMath for uint256;
address[] public collections;
uint256 public fee;
bool public publicAdd;
/** Events */
// nftType : 0:ERC721, 1: ERC1155
event CollectionAdded(address collection_address, address owner, uint256 nftType, string name, string uri);
function initialize() public initializer {
__Ownable_init();
fee = 100000 ether;
publicAdd = false;
}
function setFee(uint256 _fee) external onlyOwner {
fee = _fee;
}
function setPublicAdd(bool _publicAdd) external onlyOwner {
publicAdd = _publicAdd;
}
function importCollection(address _address, string memory _name, string memory _uri) external payable {
require(IsERC721(_address) || IsERC1155(_address), "Invalid Collection Address");
if (publicAdd) {
require(msg.value >= fee, "Insufficient funds");
} else {
require(msg.sender == owner(), "only owner can import collection");
}
uint256 nftType = 0;
if (IsERC1155(_address)) {
nftType = 1;
}
address collectionOwner = getCollectionOwner(_address);
emit CollectionAdded(_address, collectionOwner, nftType, _name, _uri);
}
function getCollectionOwner(address collection) view private returns(address) {
INFTCollection nft = INFTCollection(collection);
try nft.owner() returns (address ownerAddress) {
return ownerAddress;
} catch {
return address(0x0);
}
}
function IsERC721(address collection) view private returns(bool) {
INFTCollection nft = INFTCollection(collection);
try nft.supportsInterface(0x80ac58cd) returns (bool result) {
return result;
} catch {
return false;
}
}
function IsERC1155(address collection) view private returns(bool) {
INFTCollection nft = INFTCollection(collection);
try nft.supportsInterface(0xd9b67a26) returns (bool result) {
return result;
} catch {
return false;
}
}
function withdraw() external onlyOwner {
uint balance = address(this).balance;
require(balance > 0, "insufficient balance");
(bool result, ) = payable(msg.sender).call{value: balance}("");
require(result, "Failed to withdraw balance");
}
/**
* @dev To receive Coin
*/
receive() external payable {}
}
@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal onlyInitializing {
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal onlyInitializing {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}
@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```solidity
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
*
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts.
*
* Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
* constructor.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: setting the version to 255 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized != type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint8) {
return _initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _initializing;
}
}
@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @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
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [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.
* ====
*/
function isContract(address account) internal view returns (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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or 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 {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// 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
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract ContextUpgradeable is Initializable {
function __Context_init() internal onlyInitializing {
}
function __Context_init_unchained() internal onlyInitializing {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}
@openzeppelin/contracts/utils/math/SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
Compiler Settings
{"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers"]}},"optimizer":{"runs":200,"enabled":true},"libraries":{}}
Contract ABI
[{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"collections","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"fee","inputs":[]},{"type":"function","stateMutability":"payable","outputs":[],"name":"importCollection","inputs":[{"type":"address","name":"_address","internalType":"address"},{"type":"string","name":"_name","internalType":"string"},{"type":"string","name":"_uri","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"publicAdd","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setFee","inputs":[{"type":"uint256","name":"_fee","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setPublicAdd","inputs":[{"type":"bool","name":"_publicAdd","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdraw","inputs":[]},{"type":"event","name":"CollectionAdded","inputs":[{"type":"address","name":"collection_address","indexed":false},{"type":"address","name":"owner","indexed":false},{"type":"uint256","name":"nftType","indexed":false},{"type":"string","name":"name","indexed":false},{"type":"string","name":"uri","indexed":false}],"anonymous":false},{"type":"event","name":"Initialized","inputs":[{"type":"uint8","name":"version","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","indexed":true},{"type":"address","name":"newOwner","indexed":true}],"anonymous":false},{"type":"receive"}]
Contract Creation Code
0x608060405234801561001057600080fd5b50610b71806100206000396000f3fe6080604052600436106100a05760003560e01c80638129fc1c116100645780638129fc1c1461012b5780638da5cb5b14610140578063ddca3f4314610177578063ed1de5931461019b578063f2fde38b146101c5578063fdbda0ec146101e557600080fd5b806310748e4f146100ac5780633ccfd60b146100c15780636025964c146100d657806369fe0e2d146100f6578063715018a61461011657600080fd5b366100a757005b600080fd5b6100bf6100ba366004610948565b610205565b005b3480156100cd57600080fd5b506100bf610386565b3480156100e257600080fd5b506100bf6100f13660046109cc565b61046f565b34801561010257600080fd5b506100bf6101113660046109e9565b61048a565b34801561012257600080fd5b506100bf610497565b34801561013757600080fd5b506100bf6104ab565b34801561014c57600080fd5b506033546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b34801561018357600080fd5b5061018d60665481565b60405190815260200161016e565b3480156101a757600080fd5b506067546101b59060ff1681565b604051901515815260200161016e565b3480156101d157600080fd5b506100bf6101e0366004610a02565b6105d4565b3480156101f157600080fd5b5061015a6102003660046109e9565b61064a565b61020e83610674565b8061021d575061021d836106f5565b61026e5760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420436f6c6c656374696f6e204164647265737300000000000060448201526064015b60405180910390fd5b60675460ff16156102c5576066543410156102c05760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610265565b61031f565b6033546001600160a01b0316331461031f5760405162461bcd60e51b815260206004820181905260248201527f6f6e6c79206f776e65722063616e20696d706f727420636f6c6c656374696f6e6044820152606401610265565b600061032a846106f5565b15610333575060015b600061033e8561072d565b90507f1e5a12d698617e707da17813b9435cec85a5c311a72cc51feb7e27e4b9d9d38e8582848787604051610377959493929190610a65565b60405180910390a15050505050565b61038e61078a565b47806103d35760405162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b6044820152606401610265565b604051600090339083908381818185875af1925050503d8060008114610415576040519150601f19603f3d011682016040523d82523d6000602084013e61041a565b606091505b505090508061046b5760405162461bcd60e51b815260206004820152601a60248201527f4661696c656420746f2077697468647261772062616c616e63650000000000006044820152606401610265565b5050565b61047761078a565b6067805460ff1916911515919091179055565b61049261078a565b606655565b61049f61078a565b6104a960006107e4565b565b600054610100900460ff16158080156104cb5750600054600160ff909116105b806104e55750303b1580156104e5575060005460ff166001145b6105485760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610265565b6000805460ff19166001179055801561056b576000805461ff0019166101001790555b610573610836565b69152d02c7e14af68000006066556067805460ff1916905580156105d1576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50565b6105dc61078a565b6001600160a01b0381166106415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610265565b6105d1816107e4565b6065818154811061065a57600080fd5b6000918252602090912001546001600160a01b0316905081565b6040516301ffc9a760e01b81526380ac58cd60e01b600482015260009082906001600160a01b038216906301ffc9a7906024015b602060405180830381865afa9250505080156106e1575060408051601f3d908101601f191682019092526106de91810190610ab6565b60015b6106ee5750600092915050565b9392505050565b6040516301ffc9a760e01b8152636cdb3d1360e11b600482015260009082906001600160a01b038216906301ffc9a7906024016106a8565b600080829050806001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156106e1575060408051601f3d908101601f191682019092526106de91810190610ad3565b6033546001600160a01b031633146104a95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610265565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff1661085d5760405162461bcd60e51b815260040161026590610af0565b6104a9600054610100900460ff166108875760405162461bcd60e51b815260040161026590610af0565b6104a9336107e4565b6001600160a01b03811681146105d157600080fd5b634e487b7160e01b600052604160045260246000fd5b600082601f8301126108cc57600080fd5b813567ffffffffffffffff808211156108e7576108e76108a5565b604051601f8301601f19908116603f0116810190828211818310171561090f5761090f6108a5565b8160405283815286602085880101111561092857600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060006060848603121561095d57600080fd5b833561096881610890565b9250602084013567ffffffffffffffff8082111561098557600080fd5b610991878388016108bb565b935060408601359150808211156109a757600080fd5b506109b4868287016108bb565b9150509250925092565b80151581146105d157600080fd5b6000602082840312156109de57600080fd5b81356106ee816109be565b6000602082840312156109fb57600080fd5b5035919050565b600060208284031215610a1457600080fd5b81356106ee81610890565b6000815180845260005b81811015610a4557602081850181015186830182015201610a29565b506000602082860101526020601f19601f83011685010191505092915050565b6001600160a01b038681168252851660208201526040810184905260a060608201819052600090610a9890830185610a1f565b8281036080840152610aaa8185610a1f565b98975050505050505050565b600060208284031215610ac857600080fd5b81516106ee816109be565b600060208284031215610ae557600080fd5b81516106ee81610890565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea2646970667358221220eecf48d001bf3071e369dd06f179f3506d13f02cda18f15040b291e93edf756864736f6c63430008110033
Deployed ByteCode
0x6080604052600436106100a05760003560e01c80638129fc1c116100645780638129fc1c1461012b5780638da5cb5b14610140578063ddca3f4314610177578063ed1de5931461019b578063f2fde38b146101c5578063fdbda0ec146101e557600080fd5b806310748e4f146100ac5780633ccfd60b146100c15780636025964c146100d657806369fe0e2d146100f6578063715018a61461011657600080fd5b366100a757005b600080fd5b6100bf6100ba366004610948565b610205565b005b3480156100cd57600080fd5b506100bf610386565b3480156100e257600080fd5b506100bf6100f13660046109cc565b61046f565b34801561010257600080fd5b506100bf6101113660046109e9565b61048a565b34801561012257600080fd5b506100bf610497565b34801561013757600080fd5b506100bf6104ab565b34801561014c57600080fd5b506033546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b34801561018357600080fd5b5061018d60665481565b60405190815260200161016e565b3480156101a757600080fd5b506067546101b59060ff1681565b604051901515815260200161016e565b3480156101d157600080fd5b506100bf6101e0366004610a02565b6105d4565b3480156101f157600080fd5b5061015a6102003660046109e9565b61064a565b61020e83610674565b8061021d575061021d836106f5565b61026e5760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420436f6c6c656374696f6e204164647265737300000000000060448201526064015b60405180910390fd5b60675460ff16156102c5576066543410156102c05760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610265565b61031f565b6033546001600160a01b0316331461031f5760405162461bcd60e51b815260206004820181905260248201527f6f6e6c79206f776e65722063616e20696d706f727420636f6c6c656374696f6e6044820152606401610265565b600061032a846106f5565b15610333575060015b600061033e8561072d565b90507f1e5a12d698617e707da17813b9435cec85a5c311a72cc51feb7e27e4b9d9d38e8582848787604051610377959493929190610a65565b60405180910390a15050505050565b61038e61078a565b47806103d35760405162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b6044820152606401610265565b604051600090339083908381818185875af1925050503d8060008114610415576040519150601f19603f3d011682016040523d82523d6000602084013e61041a565b606091505b505090508061046b5760405162461bcd60e51b815260206004820152601a60248201527f4661696c656420746f2077697468647261772062616c616e63650000000000006044820152606401610265565b5050565b61047761078a565b6067805460ff1916911515919091179055565b61049261078a565b606655565b61049f61078a565b6104a960006107e4565b565b600054610100900460ff16158080156104cb5750600054600160ff909116105b806104e55750303b1580156104e5575060005460ff166001145b6105485760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610265565b6000805460ff19166001179055801561056b576000805461ff0019166101001790555b610573610836565b69152d02c7e14af68000006066556067805460ff1916905580156105d1576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50565b6105dc61078a565b6001600160a01b0381166106415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610265565b6105d1816107e4565b6065818154811061065a57600080fd5b6000918252602090912001546001600160a01b0316905081565b6040516301ffc9a760e01b81526380ac58cd60e01b600482015260009082906001600160a01b038216906301ffc9a7906024015b602060405180830381865afa9250505080156106e1575060408051601f3d908101601f191682019092526106de91810190610ab6565b60015b6106ee5750600092915050565b9392505050565b6040516301ffc9a760e01b8152636cdb3d1360e11b600482015260009082906001600160a01b038216906301ffc9a7906024016106a8565b600080829050806001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156106e1575060408051601f3d908101601f191682019092526106de91810190610ad3565b6033546001600160a01b031633146104a95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610265565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff1661085d5760405162461bcd60e51b815260040161026590610af0565b6104a9600054610100900460ff166108875760405162461bcd60e51b815260040161026590610af0565b6104a9336107e4565b6001600160a01b03811681146105d157600080fd5b634e487b7160e01b600052604160045260246000fd5b600082601f8301126108cc57600080fd5b813567ffffffffffffffff808211156108e7576108e76108a5565b604051601f8301601f19908116603f0116810190828211818310171561090f5761090f6108a5565b8160405283815286602085880101111561092857600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060006060848603121561095d57600080fd5b833561096881610890565b9250602084013567ffffffffffffffff8082111561098557600080fd5b610991878388016108bb565b935060408601359150808211156109a757600080fd5b506109b4868287016108bb565b9150509250925092565b80151581146105d157600080fd5b6000602082840312156109de57600080fd5b81356106ee816109be565b6000602082840312156109fb57600080fd5b5035919050565b600060208284031215610a1457600080fd5b81356106ee81610890565b6000815180845260005b81811015610a4557602081850181015186830182015201610a29565b506000602082860101526020601f19601f83011685010191505092915050565b6001600160a01b038681168252851660208201526040810184905260a060608201819052600090610a9890830185610a1f565b8281036080840152610aaa8185610a1f565b98975050505050505050565b600060208284031215610ac857600080fd5b81516106ee816109be565b600060208284031215610ae557600080fd5b81516106ee81610890565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fea2646970667358221220eecf48d001bf3071e369dd06f179f3506d13f02cda18f15040b291e93edf756864736f6c63430008110033