Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
EsionCollectibles
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC1155/ERC1155Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/common/ERC2981Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; contract EsionCollectibles is ERC1155Upgradeable, ERC2981Upgradeable, OwnableUpgradeable { /// @custom:oz-upgrades-unsafe-allow constructor constructor() { _disableInitializers(); } string private metadataUri; using Strings for uint256; function initialize( string memory _metadataUri, address _royaltyReceiver, uint96 _royaltyFeeNumerator ) public initializer { __ERC1155_init(_metadataUri); __Ownable_init(); _setDefaultRoyalty(_royaltyReceiver, _royaltyFeeNumerator); metadataUri = _metadataUri; } function uri(uint256 _id) public view virtual override returns (string memory) { return string(abi.encodePacked(metadataUri, _id.toString())); } function contractURI() public view returns (string memory) { return string(abi.encodePacked(metadataUri, "contractURI")); } function setMetadataUri(string calldata _metadataUri) external onlyOwner { metadataUri = _metadataUri; } function burn( address from, uint256 id, uint256 amount ) external onlyOwner { _burn(from, id, amount); } function mint(uint256 id, uint256 amount) external onlyOwner { _mint(msg.sender, id, amount, ""); } function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); if (!success) { revert("Ether transfer failed"); } } function setDefaultRoyalty(address receiver, uint96 feeNumerator) external onlyOwner { super._setDefaultRoyalty(receiver, feeNumerator); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155Upgradeable, ERC2981Upgradeable) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155Upgradeable.sol"; import "./IERC1155ReceiverUpgradeable.sol"; import "./extensions/IERC1155MetadataURIUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC1155Upgradeable, IERC1155MetadataURIUpgradeable { using AddressUpgradeable for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ function __ERC1155_init(string memory uri_) internal onlyInitializing { __ERC1155_init_unchained(uri_); } function __ERC1155_init_unchained(string memory uri_) internal onlyInitializing { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC1155Upgradeable).interfaceId || interfaceId == type(IERC1155MetadataURIUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `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 memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - 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[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * 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 _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155ReceiverUpgradeable(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155ReceiverUpgradeable.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155ReceiverUpgradeable(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155ReceiverUpgradeable.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } /** * @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[47] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981Upgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981Upgradeable is Initializable, IERC2981Upgradeable, ERC165Upgradeable { function __ERC2981_init() internal onlyInitializing { } function __ERC2981_init_unchained() internal onlyInitializing { } struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165Upgradeable, ERC165Upgradeable) returns (bool) { return interfaceId == type(IERC2981Upgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981Upgradeable */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } /** * @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[48] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ 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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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] * ``` * 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. Equivalent to `reinitializer(1)`. */ 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. * * `initializer` is equivalent to `reinitializer(1)`, so 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. * * 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. */ 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. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.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 IERC1155Upgradeable is IERC165Upgradeable { /** * @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 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 (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155ReceiverUpgradeable is IERC165Upgradeable { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155Upgradeable.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURIUpgradeable is IERC1155Upgradeable { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 * ==== * * [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://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 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) 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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 IERC165Upgradeable { /** * @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 (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981Upgradeable is IERC165Upgradeable { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_metadataUri","type":"string"},{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeeNumerator","type":"uint96"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_metadataUri","type":"string"}],"name":"setMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061001961001e565b6100de565b600054610100900460ff161561008a5760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b60005460ff90811610156100dc576000805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b6122f480620000ee6000396000f3fe608060405234801561001057600080fd5b50600436106101205760003560e01c80634e1273f4116100ad578063e8a3d48511610071578063e8a3d4851461027f578063e985e9c514610287578063f242432a146102c3578063f2fde38b146102d6578063f5298aca146102e957600080fd5b80634e1273f414610216578063715018a6146102365780638da5cb5b1461023e578063a22cb46514610259578063ae4d40a21461026c57600080fd5b80631130630c116100f45780631130630c146101a35780631b2ef1ca146101b65780632a55205a146101c95780632eb2c2d6146101fb5780633ccfd60b1461020e57600080fd5b8062fdd58e1461012557806301ffc9a71461014b57806304634d8d1461016e5780630e89341c14610183575b600080fd5b61013861013336600461175b565b6102fc565b6040519081526020015b60405180910390f35b61015e61015936600461179b565b610394565b6040519015158152602001610142565b61018161017c3660046117d6565b6103a5565b005b610196610191366004611809565b6103bb565b604051610142919061187a565b6101816101b136600461188d565b6103ef565b6101816101c43660046118ff565b610408565b6101dc6101d73660046118ff565b61042b565b604080516001600160a01b039093168352602083019190915201610142565b610181610209366004611a77565b6104d7565b610181610523565b610229610224366004611b21565b6105be565b6040516101429190611c27565b6101816106e8565b60c9546040516001600160a01b039091168152602001610142565b610181610267366004611c3a565b6106fc565b61018161027a366004611c76565b610707565b610196610842565b61015e610295366004611ce8565b6001600160a01b03918216600090815260666020908152604080832093909416825291909152205460ff1690565b6101816102d1366004611d12565b61086a565b6101816102e4366004611d77565b6108af565b6101816102f7366004611d92565b610925565b60006001600160a01b03831661036c5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b5060009081526065602090815260408083206001600160a01b03949094168352929052205490565b600061039f82610938565b92915050565b6103ad61095d565b6103b782826109b7565b5050565b606060fb6103c883610ab4565b6040516020016103d9929190611e9a565b6040516020818303038152906040529050919050565b6103f761095d565b61040360fb8383611632565b505050565b61041061095d565b6103b733838360405180602001604052806000815250610bba565b60008281526098602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916104a05750604080518082019091526097546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906104bf906001600160601b031687611ed5565b6104c99190611f0a565b915196919550909350505050565b6001600160a01b0385163314806104f357506104f38533610295565b61050f5760405162461bcd60e51b815260040161036390611f1e565b61051c8585858585610cd0565b5050505050565b61052b61095d565b604051600090339047908381818185875af1925050503d806000811461056d576040519150601f19603f3d011682016040523d82523d6000602084013e610572565b606091505b50509050806105bb5760405162461bcd60e51b8152602060048201526015602482015274115d1a195c881d1c985b9cd9995c8819985a5b1959605a1b6044820152606401610363565b50565b606081518351146106235760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610363565b6000835167ffffffffffffffff81111561063f5761063f611921565b604051908082528060200260200182016040528015610668578160200160208202803683370190505b50905060005b84518110156106e0576106b385828151811061068c5761068c611f6d565b60200260200101518583815181106106a6576106a6611f6d565b60200260200101516102fc565b8282815181106106c5576106c5611f6d565b60209081029190910101526106d981611f83565b905061066e565b509392505050565b6106f061095d565b6106fa6000610eb0565b565b6103b7338383610f02565b600054610100900460ff16158080156107275750600054600160ff909116105b806107415750303b158015610741575060005460ff166001145b6107a45760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610363565b6000805460ff1916600117905580156107c7576000805461ff0019166101001790555b6107d084610fe3565b6107d8611013565b6107e283836109b7565b83516107f59060fb9060208701906116b6565b50801561083c576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50505050565b606060fb6040516020016108569190611f9e565b604051602081830303815290604052905090565b6001600160a01b03851633148061088657506108868533610295565b6108a25760405162461bcd60e51b815260040161036390611f1e565b61051c8585858585611042565b6108b761095d565b6001600160a01b03811661091c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610363565b6105bb81610eb0565b61092d61095d565b610403838383611170565b60006001600160e01b0319821663152a902d60e11b148061039f575061039f826112ef565b60c9546001600160a01b031633146106fa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610363565b6127106001600160601b0382161115610a255760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610363565b6001600160a01b038216610a7b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610363565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217609755565b606081610ad85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610b025780610aec81611f83565b9150610afb9050600a83611f0a565b9150610adc565b60008167ffffffffffffffff811115610b1d57610b1d611921565b6040519080825280601f01601f191660200182016040528015610b47576020820181803683370190505b5090505b8415610bb257610b5c600183611fc5565b9150610b69600a86611fdc565b610b74906030611ff0565b60f81b818381518110610b8957610b89611f6d565b60200101906001600160f81b031916908160001a905350610bab600a86611f0a565b9450610b4b565b949350505050565b6001600160a01b038416610c1a5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610363565b336000610c268561133f565b90506000610c338561133f565b905060008681526065602090815260408083206001600160a01b038b16845290915281208054879290610c67908490611ff0565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610cc78360008989898961138a565b50505050505050565b8151835114610d325760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610363565b6001600160a01b038416610d585760405162461bcd60e51b815260040161036390612008565b3360005b8451811015610e42576000858281518110610d7957610d79611f6d565b602002602001015190506000858381518110610d9757610d97611f6d565b60209081029190910181015160008481526065835260408082206001600160a01b038e168352909352919091205490915081811015610de85760405162461bcd60e51b81526004016103639061204d565b60008381526065602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610e27908490611ff0565b9250508190555050505080610e3b90611f83565b9050610d5c565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610e92929190612097565b60405180910390a4610ea88187878787876114f5565b505050505050565b60c980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610f765760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610363565b6001600160a01b03838116600081815260666020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600054610100900460ff1661100a5760405162461bcd60e51b8152600401610363906120c5565b6105bb816115bf565b600054610100900460ff1661103a5760405162461bcd60e51b8152600401610363906120c5565b6106fa6115ef565b6001600160a01b0384166110685760405162461bcd60e51b815260040161036390612008565b3360006110748561133f565b905060006110818561133f565b905060008681526065602090815260408083206001600160a01b038c168452909152902054858110156110c65760405162461bcd60e51b81526004016103639061204d565b60008781526065602090815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611105908490611ff0565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611165848a8a8a8a8a61138a565b505050505050505050565b6001600160a01b0383166111d25760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610363565b3360006111de8461133f565b905060006111eb8461133f565b6040805160208082018352600091829052888252606581528282206001600160a01b038b16835290522054909150848110156112755760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610363565b60008681526065602090815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052610cc7565b60006001600160e01b03198216636cdb3d1360e11b148061132057506001600160e01b031982166303a24d0760e21b145b8061039f57506301ffc9a760e01b6001600160e01b031983161461039f565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061137957611379611f6d565b602090810291909101015292915050565b6001600160a01b0384163b15610ea85760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906113ce9089908990889088908890600401612110565b602060405180830381600087803b1580156113e857600080fd5b505af1925050508015611418575060408051601f3d908101601f1916820190925261141591810190612155565b60015b6114c557611424612172565b806308c379a0141561145e575061143961218e565b806114445750611460565b8060405162461bcd60e51b8152600401610363919061187a565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610363565b6001600160e01b0319811663f23a6e6160e01b14610cc75760405162461bcd60e51b815260040161036390612218565b6001600160a01b0384163b15610ea85760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906115399089908990889088908890600401612260565b602060405180830381600087803b15801561155357600080fd5b505af1925050508015611583575060408051601f3d908101601f1916820190925261158091810190612155565b60015b61158f57611424612172565b6001600160e01b0319811663bc197c8160e01b14610cc75760405162461bcd60e51b815260040161036390612218565b600054610100900460ff166115e65760405162461bcd60e51b8152600401610363906120c5565b6105bb8161161f565b600054610100900460ff166116165760405162461bcd60e51b8152600401610363906120c5565b6106fa33610eb0565b80516103b79060679060208401906116b6565b82805461163e90611dc5565b90600052602060002090601f01602090048101928261166057600085556116a6565b82601f106116795782800160ff198235161785556116a6565b828001600101855582156116a6579182015b828111156116a657823582559160200191906001019061168b565b506116b292915061172a565b5090565b8280546116c290611dc5565b90600052602060002090601f0160209004810192826116e457600085556116a6565b82601f106116fd57805160ff19168380011785556116a6565b828001600101855582156116a6579182015b828111156116a657825182559160200191906001019061170f565b5b808211156116b2576000815560010161172b565b80356001600160a01b038116811461175657600080fd5b919050565b6000806040838503121561176e57600080fd5b6117778361173f565b946020939093013593505050565b6001600160e01b0319811681146105bb57600080fd5b6000602082840312156117ad57600080fd5b81356117b881611785565b9392505050565b80356001600160601b038116811461175657600080fd5b600080604083850312156117e957600080fd5b6117f28361173f565b9150611800602084016117bf565b90509250929050565b60006020828403121561181b57600080fd5b5035919050565b60005b8381101561183d578181015183820152602001611825565b8381111561083c5750506000910152565b60008151808452611866816020860160208601611822565b601f01601f19169290920160200192915050565b6020815260006117b8602083018461184e565b600080602083850312156118a057600080fd5b823567ffffffffffffffff808211156118b857600080fd5b818501915085601f8301126118cc57600080fd5b8135818111156118db57600080fd5b8660208285010111156118ed57600080fd5b60209290920196919550909350505050565b6000806040838503121561191257600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561195d5761195d611921565b6040525050565b600067ffffffffffffffff82111561197e5761197e611921565b5060051b60200190565b600082601f83011261199957600080fd5b813560206119a682611964565b6040516119b38282611937565b83815260059390931b85018201928281019150868411156119d357600080fd5b8286015b848110156119ee57803583529183019183016119d7565b509695505050505050565b600067ffffffffffffffff831115611a1357611a13611921565b604051611a2a601f8501601f191660200182611937565b809150838152848484011115611a3f57600080fd5b83836020830137600060208583010152509392505050565b600082601f830112611a6857600080fd5b6117b8838335602085016119f9565b600080600080600060a08688031215611a8f57600080fd5b611a988661173f565b9450611aa66020870161173f565b9350604086013567ffffffffffffffff80821115611ac357600080fd5b611acf89838a01611988565b94506060880135915080821115611ae557600080fd5b611af189838a01611988565b93506080880135915080821115611b0757600080fd5b50611b1488828901611a57565b9150509295509295909350565b60008060408385031215611b3457600080fd5b823567ffffffffffffffff80821115611b4c57600080fd5b818501915085601f830112611b6057600080fd5b81356020611b6d82611964565b604051611b7a8282611937565b83815260059390931b8501820192828101915089841115611b9a57600080fd5b948201945b83861015611bbf57611bb08661173f565b82529482019490820190611b9f565b96505086013592505080821115611bd557600080fd5b50611be285828601611988565b9150509250929050565b600081518084526020808501945080840160005b83811015611c1c57815187529582019590820190600101611c00565b509495945050505050565b6020815260006117b86020830184611bec565b60008060408385031215611c4d57600080fd5b611c568361173f565b915060208301358015158114611c6b57600080fd5b809150509250929050565b600080600060608486031215611c8b57600080fd5b833567ffffffffffffffff811115611ca257600080fd5b8401601f81018613611cb357600080fd5b611cc2868235602084016119f9565b935050611cd16020850161173f565b9150611cdf604085016117bf565b90509250925092565b60008060408385031215611cfb57600080fd5b611d048361173f565b91506118006020840161173f565b600080600080600060a08688031215611d2a57600080fd5b611d338661173f565b9450611d416020870161173f565b93506040860135925060608601359150608086013567ffffffffffffffff811115611d6b57600080fd5b611b1488828901611a57565b600060208284031215611d8957600080fd5b6117b88261173f565b600080600060608486031215611da757600080fd5b611db08461173f565b95602085013595506040909401359392505050565b600181811c90821680611dd957607f821691505b60208210811415611dfa57634e487b7160e01b600052602260045260246000fd5b50919050565b8054600090600181811c9080831680611e1a57607f831692505b6020808410821415611e3c57634e487b7160e01b600052602260045260246000fd5b818015611e505760018114611e6157611e8e565b60ff19861689528489019650611e8e565b60008881526020902060005b86811015611e865781548b820152908501908301611e6d565b505084890196505b50505050505092915050565b6000611ea68285611e00565b8351611eb6818360208801611822565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611eef57611eef611ebf565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611f1957611f19611ef4565b500490565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611f9757611f97611ebf565b5060010190565b6000611faa8284611e00565b6a636f6e747261637455524960a81b8152600b019392505050565b600082821015611fd757611fd7611ebf565b500390565b600082611feb57611feb611ef4565b500690565b6000821982111561200357612003611ebf565b500190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006120aa6040830185611bec565b82810360208401526120bc8185611bec565b95945050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061214a9083018461184e565b979650505050505050565b60006020828403121561216757600080fd5b81516117b881611785565b600060033d111561218b5760046000803e5060005160e01c5b90565b600060443d101561219c5790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156121cc57505050505090565b82850191508151818111156121e45750505050505090565b843d87010160208285010111156121fe5750505050505090565b61220d60208286010187611937565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a06040820181905260009061228c90830186611bec565b828103606084015261229e8186611bec565b905082810360808401526122b2818561184e565b9897505050505050505056fea2646970667358221220f04a36e4561c4aa90eabd0a459b7df472456a60e93fadb1bcb4350fc847f88a264736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101205760003560e01c80634e1273f4116100ad578063e8a3d48511610071578063e8a3d4851461027f578063e985e9c514610287578063f242432a146102c3578063f2fde38b146102d6578063f5298aca146102e957600080fd5b80634e1273f414610216578063715018a6146102365780638da5cb5b1461023e578063a22cb46514610259578063ae4d40a21461026c57600080fd5b80631130630c116100f45780631130630c146101a35780631b2ef1ca146101b65780632a55205a146101c95780632eb2c2d6146101fb5780633ccfd60b1461020e57600080fd5b8062fdd58e1461012557806301ffc9a71461014b57806304634d8d1461016e5780630e89341c14610183575b600080fd5b61013861013336600461175b565b6102fc565b6040519081526020015b60405180910390f35b61015e61015936600461179b565b610394565b6040519015158152602001610142565b61018161017c3660046117d6565b6103a5565b005b610196610191366004611809565b6103bb565b604051610142919061187a565b6101816101b136600461188d565b6103ef565b6101816101c43660046118ff565b610408565b6101dc6101d73660046118ff565b61042b565b604080516001600160a01b039093168352602083019190915201610142565b610181610209366004611a77565b6104d7565b610181610523565b610229610224366004611b21565b6105be565b6040516101429190611c27565b6101816106e8565b60c9546040516001600160a01b039091168152602001610142565b610181610267366004611c3a565b6106fc565b61018161027a366004611c76565b610707565b610196610842565b61015e610295366004611ce8565b6001600160a01b03918216600090815260666020908152604080832093909416825291909152205460ff1690565b6101816102d1366004611d12565b61086a565b6101816102e4366004611d77565b6108af565b6101816102f7366004611d92565b610925565b60006001600160a01b03831661036c5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b5060009081526065602090815260408083206001600160a01b03949094168352929052205490565b600061039f82610938565b92915050565b6103ad61095d565b6103b782826109b7565b5050565b606060fb6103c883610ab4565b6040516020016103d9929190611e9a565b6040516020818303038152906040529050919050565b6103f761095d565b61040360fb8383611632565b505050565b61041061095d565b6103b733838360405180602001604052806000815250610bba565b60008281526098602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916104a05750604080518082019091526097546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906104bf906001600160601b031687611ed5565b6104c99190611f0a565b915196919550909350505050565b6001600160a01b0385163314806104f357506104f38533610295565b61050f5760405162461bcd60e51b815260040161036390611f1e565b61051c8585858585610cd0565b5050505050565b61052b61095d565b604051600090339047908381818185875af1925050503d806000811461056d576040519150601f19603f3d011682016040523d82523d6000602084013e610572565b606091505b50509050806105bb5760405162461bcd60e51b8152602060048201526015602482015274115d1a195c881d1c985b9cd9995c8819985a5b1959605a1b6044820152606401610363565b50565b606081518351146106235760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610363565b6000835167ffffffffffffffff81111561063f5761063f611921565b604051908082528060200260200182016040528015610668578160200160208202803683370190505b50905060005b84518110156106e0576106b385828151811061068c5761068c611f6d565b60200260200101518583815181106106a6576106a6611f6d565b60200260200101516102fc565b8282815181106106c5576106c5611f6d565b60209081029190910101526106d981611f83565b905061066e565b509392505050565b6106f061095d565b6106fa6000610eb0565b565b6103b7338383610f02565b600054610100900460ff16158080156107275750600054600160ff909116105b806107415750303b158015610741575060005460ff166001145b6107a45760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610363565b6000805460ff1916600117905580156107c7576000805461ff0019166101001790555b6107d084610fe3565b6107d8611013565b6107e283836109b7565b83516107f59060fb9060208701906116b6565b50801561083c576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50505050565b606060fb6040516020016108569190611f9e565b604051602081830303815290604052905090565b6001600160a01b03851633148061088657506108868533610295565b6108a25760405162461bcd60e51b815260040161036390611f1e565b61051c8585858585611042565b6108b761095d565b6001600160a01b03811661091c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610363565b6105bb81610eb0565b61092d61095d565b610403838383611170565b60006001600160e01b0319821663152a902d60e11b148061039f575061039f826112ef565b60c9546001600160a01b031633146106fa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610363565b6127106001600160601b0382161115610a255760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610363565b6001600160a01b038216610a7b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610363565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217609755565b606081610ad85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610b025780610aec81611f83565b9150610afb9050600a83611f0a565b9150610adc565b60008167ffffffffffffffff811115610b1d57610b1d611921565b6040519080825280601f01601f191660200182016040528015610b47576020820181803683370190505b5090505b8415610bb257610b5c600183611fc5565b9150610b69600a86611fdc565b610b74906030611ff0565b60f81b818381518110610b8957610b89611f6d565b60200101906001600160f81b031916908160001a905350610bab600a86611f0a565b9450610b4b565b949350505050565b6001600160a01b038416610c1a5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610363565b336000610c268561133f565b90506000610c338561133f565b905060008681526065602090815260408083206001600160a01b038b16845290915281208054879290610c67908490611ff0565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610cc78360008989898961138a565b50505050505050565b8151835114610d325760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610363565b6001600160a01b038416610d585760405162461bcd60e51b815260040161036390612008565b3360005b8451811015610e42576000858281518110610d7957610d79611f6d565b602002602001015190506000858381518110610d9757610d97611f6d565b60209081029190910181015160008481526065835260408082206001600160a01b038e168352909352919091205490915081811015610de85760405162461bcd60e51b81526004016103639061204d565b60008381526065602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610e27908490611ff0565b9250508190555050505080610e3b90611f83565b9050610d5c565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610e92929190612097565b60405180910390a4610ea88187878787876114f5565b505050505050565b60c980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610f765760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610363565b6001600160a01b03838116600081815260666020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600054610100900460ff1661100a5760405162461bcd60e51b8152600401610363906120c5565b6105bb816115bf565b600054610100900460ff1661103a5760405162461bcd60e51b8152600401610363906120c5565b6106fa6115ef565b6001600160a01b0384166110685760405162461bcd60e51b815260040161036390612008565b3360006110748561133f565b905060006110818561133f565b905060008681526065602090815260408083206001600160a01b038c168452909152902054858110156110c65760405162461bcd60e51b81526004016103639061204d565b60008781526065602090815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611105908490611ff0565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611165848a8a8a8a8a61138a565b505050505050505050565b6001600160a01b0383166111d25760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610363565b3360006111de8461133f565b905060006111eb8461133f565b6040805160208082018352600091829052888252606581528282206001600160a01b038b16835290522054909150848110156112755760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610363565b60008681526065602090815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052610cc7565b60006001600160e01b03198216636cdb3d1360e11b148061132057506001600160e01b031982166303a24d0760e21b145b8061039f57506301ffc9a760e01b6001600160e01b031983161461039f565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061137957611379611f6d565b602090810291909101015292915050565b6001600160a01b0384163b15610ea85760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906113ce9089908990889088908890600401612110565b602060405180830381600087803b1580156113e857600080fd5b505af1925050508015611418575060408051601f3d908101601f1916820190925261141591810190612155565b60015b6114c557611424612172565b806308c379a0141561145e575061143961218e565b806114445750611460565b8060405162461bcd60e51b8152600401610363919061187a565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610363565b6001600160e01b0319811663f23a6e6160e01b14610cc75760405162461bcd60e51b815260040161036390612218565b6001600160a01b0384163b15610ea85760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906115399089908990889088908890600401612260565b602060405180830381600087803b15801561155357600080fd5b505af1925050508015611583575060408051601f3d908101601f1916820190925261158091810190612155565b60015b61158f57611424612172565b6001600160e01b0319811663bc197c8160e01b14610cc75760405162461bcd60e51b815260040161036390612218565b600054610100900460ff166115e65760405162461bcd60e51b8152600401610363906120c5565b6105bb8161161f565b600054610100900460ff166116165760405162461bcd60e51b8152600401610363906120c5565b6106fa33610eb0565b80516103b79060679060208401906116b6565b82805461163e90611dc5565b90600052602060002090601f01602090048101928261166057600085556116a6565b82601f106116795782800160ff198235161785556116a6565b828001600101855582156116a6579182015b828111156116a657823582559160200191906001019061168b565b506116b292915061172a565b5090565b8280546116c290611dc5565b90600052602060002090601f0160209004810192826116e457600085556116a6565b82601f106116fd57805160ff19168380011785556116a6565b828001600101855582156116a6579182015b828111156116a657825182559160200191906001019061170f565b5b808211156116b2576000815560010161172b565b80356001600160a01b038116811461175657600080fd5b919050565b6000806040838503121561176e57600080fd5b6117778361173f565b946020939093013593505050565b6001600160e01b0319811681146105bb57600080fd5b6000602082840312156117ad57600080fd5b81356117b881611785565b9392505050565b80356001600160601b038116811461175657600080fd5b600080604083850312156117e957600080fd5b6117f28361173f565b9150611800602084016117bf565b90509250929050565b60006020828403121561181b57600080fd5b5035919050565b60005b8381101561183d578181015183820152602001611825565b8381111561083c5750506000910152565b60008151808452611866816020860160208601611822565b601f01601f19169290920160200192915050565b6020815260006117b8602083018461184e565b600080602083850312156118a057600080fd5b823567ffffffffffffffff808211156118b857600080fd5b818501915085601f8301126118cc57600080fd5b8135818111156118db57600080fd5b8660208285010111156118ed57600080fd5b60209290920196919550909350505050565b6000806040838503121561191257600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561195d5761195d611921565b6040525050565b600067ffffffffffffffff82111561197e5761197e611921565b5060051b60200190565b600082601f83011261199957600080fd5b813560206119a682611964565b6040516119b38282611937565b83815260059390931b85018201928281019150868411156119d357600080fd5b8286015b848110156119ee57803583529183019183016119d7565b509695505050505050565b600067ffffffffffffffff831115611a1357611a13611921565b604051611a2a601f8501601f191660200182611937565b809150838152848484011115611a3f57600080fd5b83836020830137600060208583010152509392505050565b600082601f830112611a6857600080fd5b6117b8838335602085016119f9565b600080600080600060a08688031215611a8f57600080fd5b611a988661173f565b9450611aa66020870161173f565b9350604086013567ffffffffffffffff80821115611ac357600080fd5b611acf89838a01611988565b94506060880135915080821115611ae557600080fd5b611af189838a01611988565b93506080880135915080821115611b0757600080fd5b50611b1488828901611a57565b9150509295509295909350565b60008060408385031215611b3457600080fd5b823567ffffffffffffffff80821115611b4c57600080fd5b818501915085601f830112611b6057600080fd5b81356020611b6d82611964565b604051611b7a8282611937565b83815260059390931b8501820192828101915089841115611b9a57600080fd5b948201945b83861015611bbf57611bb08661173f565b82529482019490820190611b9f565b96505086013592505080821115611bd557600080fd5b50611be285828601611988565b9150509250929050565b600081518084526020808501945080840160005b83811015611c1c57815187529582019590820190600101611c00565b509495945050505050565b6020815260006117b86020830184611bec565b60008060408385031215611c4d57600080fd5b611c568361173f565b915060208301358015158114611c6b57600080fd5b809150509250929050565b600080600060608486031215611c8b57600080fd5b833567ffffffffffffffff811115611ca257600080fd5b8401601f81018613611cb357600080fd5b611cc2868235602084016119f9565b935050611cd16020850161173f565b9150611cdf604085016117bf565b90509250925092565b60008060408385031215611cfb57600080fd5b611d048361173f565b91506118006020840161173f565b600080600080600060a08688031215611d2a57600080fd5b611d338661173f565b9450611d416020870161173f565b93506040860135925060608601359150608086013567ffffffffffffffff811115611d6b57600080fd5b611b1488828901611a57565b600060208284031215611d8957600080fd5b6117b88261173f565b600080600060608486031215611da757600080fd5b611db08461173f565b95602085013595506040909401359392505050565b600181811c90821680611dd957607f821691505b60208210811415611dfa57634e487b7160e01b600052602260045260246000fd5b50919050565b8054600090600181811c9080831680611e1a57607f831692505b6020808410821415611e3c57634e487b7160e01b600052602260045260246000fd5b818015611e505760018114611e6157611e8e565b60ff19861689528489019650611e8e565b60008881526020902060005b86811015611e865781548b820152908501908301611e6d565b505084890196505b50505050505092915050565b6000611ea68285611e00565b8351611eb6818360208801611822565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611eef57611eef611ebf565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611f1957611f19611ef4565b500490565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611f9757611f97611ebf565b5060010190565b6000611faa8284611e00565b6a636f6e747261637455524960a81b8152600b019392505050565b600082821015611fd757611fd7611ebf565b500390565b600082611feb57611feb611ef4565b500690565b6000821982111561200357612003611ebf565b500190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006120aa6040830185611bec565b82810360208401526120bc8185611bec565b95945050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061214a9083018461184e565b979650505050505050565b60006020828403121561216757600080fd5b81516117b881611785565b600060033d111561218b5760046000803e5060005160e01c5b90565b600060443d101561219c5790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156121cc57505050505090565b82850191508151818111156121e45750505050505090565b843d87010160208285010111156121fe5750505050505090565b61220d60208286010187611937565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a06040820181905260009061228c90830186611bec565b828103606084015261229e8186611bec565b905082810360808401526122b2818561184e565b9897505050505050505056fea2646970667358221220f04a36e4561c4aa90eabd0a459b7df472456a60e93fadb1bcb4350fc847f88a264736f6c63430008090033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.