Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 18 from a total of 18 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer Ownersh... | 16532755 | 696 days ago | IN | 0 ETH | 0.00044 | ||||
Buy Item | 16325338 | 725 days ago | IN | 0.5 ETH | 0.00218076 | ||||
Buy Item | 16325263 | 725 days ago | IN | 0.75 ETH | 0.00231514 | ||||
Buy Item | 16173771 | 747 days ago | IN | 0.75 ETH | 0.00246316 | ||||
Buy Item | 16090812 | 758 days ago | IN | 0.5 ETH | 0.00194133 | ||||
Buy Item | 16090808 | 758 days ago | IN | 0.5 ETH | 0.00202893 | ||||
Buy Item | 16085856 | 759 days ago | IN | 0.5 ETH | 0.00173123 | ||||
Buy Item | 16085715 | 759 days ago | IN | 1.5 ETH | 0.00218944 | ||||
Buy Item | 16042139 | 765 days ago | IN | 0.5 ETH | 0.00166846 | ||||
Buy Item | 15943009 | 779 days ago | IN | 0.75 ETH | 0.00276698 | ||||
Buy Item | 15938911 | 779 days ago | IN | 0.5 ETH | 0.00261326 | ||||
Buy Item | 15938816 | 779 days ago | IN | 1.5 ETH | 0.00342426 | ||||
Buy Item | 15935783 | 780 days ago | IN | 0.5 ETH | 0.00942049 | ||||
Buy Item | 15934158 | 780 days ago | IN | 1.5 ETH | 0.03902111 | ||||
Buy Item | 15933969 | 780 days ago | IN | 0.75 ETH | 0.00855288 | ||||
Buy Item | 15933966 | 780 days ago | IN | 0.5 ETH | 0.00844751 | ||||
Buy Item | 15933871 | 780 days ago | IN | 0.5 ETH | 0.00833925 | ||||
Batch List Items | 15909226 | 784 days ago | IN | 0 ETH | 0.08849304 |
Latest 16 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
16325338 | 725 days ago | 0.5 ETH | ||||
16325263 | 725 days ago | 0.75 ETH | ||||
16173771 | 747 days ago | 0.75 ETH | ||||
16090812 | 758 days ago | 0.5 ETH | ||||
16090808 | 758 days ago | 0.5 ETH | ||||
16085856 | 759 days ago | 0.5 ETH | ||||
16085715 | 759 days ago | 1.5 ETH | ||||
16042139 | 765 days ago | 0.5 ETH | ||||
15943009 | 779 days ago | 0.75 ETH | ||||
15938911 | 779 days ago | 0.5 ETH | ||||
15938816 | 779 days ago | 1.5 ETH | ||||
15935783 | 780 days ago | 0.5 ETH | ||||
15934158 | 780 days ago | 1.5 ETH | ||||
15933969 | 780 days ago | 0.75 ETH | ||||
15933966 | 780 days ago | 0.5 ETH | ||||
15933871 | 780 days ago | 0.5 ETH |
Loading...
Loading
Contract Name:
FixedSale
Compiler Version
v0.6.12+commit.27d51765
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.6.12; import "@openzeppelin/contracts/introspection/IERC165.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; contract FixedSale is Ownable, ReentrancyGuard { using SafeMath for uint256; using Address for address payable; using SafeERC20 for IERC20; /// @notice Events for the contract event BatchItemsListed( address indexed owner, address indexed nft, uint256[] tokenIds, uint256[] quantities, uint256[] prices, uint256 startingTime, bool isPrivate, address allowedAddress ); event ItemListed( address indexed owner, address indexed nft, uint256 tokenId, uint256 quantity, uint256 pricePerItem, uint256 startingTime, bool isPrivate, address allowedAddress ); event ItemSold( address indexed seller, address indexed buyer, address indexed nft, uint256 tokenId, uint256 quantity, uint256 price ); event ItemUpdated( address indexed owner, address indexed nft, uint256 tokenId, uint256 newPrice ); event ItemCanceled( address indexed owner, address indexed nft, uint256 tokenId ); /// @notice Structure for listed items struct Listing { uint256 quantity; uint256 pricePerItem; uint256 startingTime; address allowedAddress; } bytes4 private constant INTERFACE_ID_ERC721 = 0x80ac58cd; bytes4 private constant INTERFACE_ID_ERC1155 = 0xd9b67a26; /// @notice NftAddress -> Token ID -> Owner -> Listing item mapping(address => mapping(uint256 => mapping(address => Listing))) public listings; /// @notice Contract constructor constructor() public {} /// @notice Method for listing all items in a NFT /// @param _nftAddress Address of NFT contract /// @param _tokenIds Token Start ID of NFT /// @param _quantities token amount to list (needed for ERC-1155 NFTs, set as 1 for ERC-721) /// @param _prices sale price for each iteam /// @param _startingTime scheduling for a future sale /// @param _allowedAddress optional param for private sale function batchListItems( address _nftAddress, uint256[] calldata _tokenIds, uint256[] calldata _quantities, uint256[] calldata _prices, uint256 _startingTime, address _allowedAddress ) external { require(_tokenIds.length > 0, "No token IDs"); require( _quantities.length == 1 || _quantities.length == _tokenIds.length, "Mismatching quantities" ); require( _prices.length == 1 || _prices.length == _prices.length, "Mismatching prices" ); if (IERC165(_nftAddress).supportsInterface(INTERFACE_ID_ERC721)) { IERC721 nft = IERC721(_nftAddress); require( nft.isApprovedForAll(_msgSender(), address(this)), "Must be approved before list." ); } else if ( IERC165(_nftAddress).supportsInterface(INTERFACE_ID_ERC1155) ) { IERC1155 nft = IERC1155(_nftAddress); require( nft.isApprovedForAll(_msgSender(), address(this)), "Must be approved before list." ); } else { revert("Invalid NFT address."); } for (uint256 i = 0; i < _tokenIds.length; i++) { uint256 _tokenId = _tokenIds[i]; if (IERC165(_nftAddress).supportsInterface(INTERFACE_ID_ERC721)) { IERC721 nft = IERC721(_nftAddress); require( nft.ownerOf(_tokenId) == _msgSender(), "Must be owner of NFT." ); } else if ( IERC165(_nftAddress).supportsInterface(INTERFACE_ID_ERC1155) ) { IERC1155 nft = IERC1155(_nftAddress); uint256 quantity = i < _quantities.length ? _quantities[i] : _quantities[0]; require( nft.balanceOf(_msgSender(), _tokenId) >= quantity, "Must hold enough NFTs." ); } } for (uint256 i = 0; i < _tokenIds.length; i++) { uint256 _tokenId = _tokenIds[i]; listings[_nftAddress][_tokenId][_msgSender()] = Listing( i < _quantities.length ? _quantities[i] : _quantities[0], i < _prices.length ? _prices[i] : _prices[0], _startingTime, _allowedAddress ); } emit BatchItemsListed( _msgSender(), _nftAddress, _tokenIds, _quantities, _prices, _startingTime, _allowedAddress == address(0x0), _allowedAddress ); } /// @notice Method for listing NFT /// @param _nftAddress Address of NFT contract /// @param _tokenId Token ID of NFT /// @param _quantity token amount to list (needed for ERC-1155 NFTs, set as 1 for ERC-721) /// @param _pricePerItem sale price for each iteam /// @param _startingTime scheduling for a future sale /// @param _allowedAddress optional param for private sale function listItem( address _nftAddress, uint256 _tokenId, uint256 _quantity, uint256 _pricePerItem, uint256 _startingTime, address _allowedAddress ) external { if (IERC165(_nftAddress).supportsInterface(INTERFACE_ID_ERC721)) { IERC721 nft = IERC721(_nftAddress); require( nft.ownerOf(_tokenId) == _msgSender(), "Must be owner of NFT." ); require( nft.isApprovedForAll(_msgSender(), address(this)), "Must be approved before list." ); } else if ( IERC165(_nftAddress).supportsInterface(INTERFACE_ID_ERC1155) ) { IERC1155 nft = IERC1155(_nftAddress); require( nft.balanceOf(_msgSender(), _tokenId) >= _quantity, "Must hold enough NFTs." ); require( nft.isApprovedForAll(_msgSender(), address(this)), "Must be approved before list." ); } else { revert("Invalid NFT address."); } listings[_nftAddress][_tokenId][_msgSender()] = Listing( _quantity, _pricePerItem, _startingTime, _allowedAddress ); emit ItemListed( _msgSender(), _nftAddress, _tokenId, _quantity, _pricePerItem, _startingTime, _allowedAddress == address(0x0), _allowedAddress ); } /// @notice Method for canceling listed NFT function cancelListing(address _nftAddress, uint256 _tokenId) external nonReentrant { require( listings[_nftAddress][_tokenId][_msgSender()].quantity > 0, "Not listed item." ); _cancelListing(_nftAddress, _tokenId, _msgSender()); } /// @notice Method for updating listed NFT /// @param _nftAddress Address of NFT contract /// @param _tokenId Token ID of NFT /// @param _newPrice New sale price for each iteam function updateListing( address _nftAddress, uint256 _tokenId, uint256 _newPrice ) external nonReentrant { Listing storage listedItem = listings[_nftAddress][_tokenId][ _msgSender() ]; require(listedItem.quantity > 0, "Not listed item."); if (IERC165(_nftAddress).supportsInterface(INTERFACE_ID_ERC721)) { IERC721 nft = IERC721(_nftAddress); require( nft.ownerOf(_tokenId) == _msgSender(), "Not owning the item." ); } else if ( IERC165(_nftAddress).supportsInterface(INTERFACE_ID_ERC1155) ) { IERC1155 nft = IERC1155(_nftAddress); require( nft.balanceOf(_msgSender(), _tokenId) >= listedItem.quantity, "Not owning the item." ); } else { revert("Invalid NFT address."); } listedItem.pricePerItem = _newPrice; emit ItemUpdated(_msgSender(), _nftAddress, _tokenId, _newPrice); } /// @notice Method for buying listed NFT /// @param _nftAddress NFT contract address /// @param _tokenId TokenId /// @param _owner Token Owner /// @param _quantity Quantity to buy function buyItem( address _nftAddress, uint256 _tokenId, address payable _owner, uint256 _quantity ) external payable nonReentrant { _buyItem(_nftAddress, _tokenId, _owner, _quantity); } /// @notice Method for buying listed NFT /// @param _nftAddresses List of NFT contract address /// @param _tokenIds List of TokenId /// @param _owners List of Token Owners /// @param _quantities List of Quantities function batchBuyItems( address[] calldata _nftAddresses, uint256[] calldata _tokenIds, address payable[] calldata _owners, uint256[] calldata _quantities ) external payable nonReentrant { require(_nftAddresses.length > 0, "No Address"); require( _tokenIds.length == _nftAddresses.length, "Mismatching token IDs" ); require(_owners.length == _nftAddresses.length, "Mismatching owners"); require( _quantities.length == _nftAddresses.length, "Mismatching quantities" ); for (uint256 i = 0; i < _nftAddresses.length; i++) { _buyItem( _nftAddresses[i], _tokenIds[i], _owners[i], _quantities[i] ); } } /// @notice Internal method for buying listed NFT /// @param _nftAddress NFT contract address /// @param _tokenId TokenId /// @param _owner Token Owner /// @param _quantity Quantity to buy function _buyItem( address _nftAddress, uint256 _tokenId, address payable _owner, uint256 _quantity ) internal { Listing memory listedItem = listings[_nftAddress][_tokenId][_owner]; require(_quantity > 0, "Invalid quantity"); require(listedItem.quantity > 0, "Not listed item."); require(listedItem.quantity >= _quantity, "Not enough on sale."); if (IERC165(_nftAddress).supportsInterface(INTERFACE_ID_ERC721)) { IERC721 nft = IERC721(_nftAddress); require(nft.ownerOf(_tokenId) == _owner, "Not owning the item."); } else if ( IERC165(_nftAddress).supportsInterface(INTERFACE_ID_ERC1155) ) { IERC1155 nft = IERC1155(_nftAddress); require( nft.balanceOf(_owner, _tokenId) >= listedItem.quantity, "Not owning the item." ); } else { revert("Invalid NFT address."); } require( _getNow() >= listedItem.startingTime, "Item is not buyable yet." ); require( msg.value >= listedItem.pricePerItem.mul(_quantity), "Not enough amount to buy item." ); if (listedItem.allowedAddress != address(0)) { require( listedItem.allowedAddress == _msgSender(), "You are not eligable to buy item." ); } (bool ownerTransferSuccess, ) = _owner.call{ value: listedItem.pricePerItem.mul(_quantity) }(""); require(ownerTransferSuccess, "FixedSale: Owner transfer failed"); // Transfer NFT to buyer if (IERC165(_nftAddress).supportsInterface(INTERFACE_ID_ERC721)) { IERC721(_nftAddress).safeTransferFrom( _owner, _msgSender(), _tokenId ); } else { IERC1155(_nftAddress).safeTransferFrom( _owner, _msgSender(), _tokenId, _quantity, bytes("") ); } emit ItemSold( _owner, _msgSender(), _nftAddress, _tokenId, listedItem.quantity, msg.value.div(listedItem.quantity) ); if (listedItem.quantity > _quantity) { listings[_nftAddress][_tokenId][_owner].quantity = listedItem.quantity - _quantity; } else { delete (listings[_nftAddress][_tokenId][_owner]); } } //////////////////////////// /// Internal and Private /// //////////////////////////// function _getNow() internal view virtual returns (uint256) { return block.timestamp; } /// @dev Reset approval and approve exact amount function _approveHelper( IERC20 token, address recipient, uint256 amount ) internal { token.safeApprove(recipient, 0); token.safeApprove(recipient, amount); } function _cancelListing( address _nftAddress, uint256 _tokenId, address _owner ) private { Listing memory listedItem = listings[_nftAddress][_tokenId][_owner]; if (IERC165(_nftAddress).supportsInterface(INTERFACE_ID_ERC721)) { IERC721 nft = IERC721(_nftAddress); require(nft.ownerOf(_tokenId) == _owner, "Not owning the item."); } else if ( IERC165(_nftAddress).supportsInterface(INTERFACE_ID_ERC1155) ) { IERC1155 nft = IERC1155(_nftAddress); require( nft.balanceOf(_msgSender(), _tokenId) >= listedItem.quantity, "Not owning the item." ); } else { revert("Invalid NFT address."); } delete (listings[_nftAddress][_tokenId][_owner]); emit ItemCanceled(_owner, _nftAddress, _tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; import "../../introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; import "../../introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ 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) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { 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) { // 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) { 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) { 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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); 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) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @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. 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) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); 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) { require(b > 0, "SafeMath: modulo by zero"); 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) { 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. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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) { 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) { require(b > 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN 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 Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
{ "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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"nft","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"prices","type":"uint256[]"},{"indexed":false,"internalType":"uint256","name":"startingTime","type":"uint256"},{"indexed":false,"internalType":"bool","name":"isPrivate","type":"bool"},{"indexed":false,"internalType":"address","name":"allowedAddress","type":"address"}],"name":"BatchItemsListed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"nft","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ItemCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"nft","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"pricePerItem","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startingTime","type":"uint256"},{"indexed":false,"internalType":"bool","name":"isPrivate","type":"bool"},{"indexed":false,"internalType":"address","name":"allowedAddress","type":"address"}],"name":"ItemListed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"seller","type":"address"},{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":true,"internalType":"address","name":"nft","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"ItemSold","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"nft","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"ItemUpdated","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"},{"inputs":[{"internalType":"address[]","name":"_nftAddresses","type":"address[]"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"address payable[]","name":"_owners","type":"address[]"},{"internalType":"uint256[]","name":"_quantities","type":"uint256[]"}],"name":"batchBuyItems","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_quantities","type":"uint256[]"},{"internalType":"uint256[]","name":"_prices","type":"uint256[]"},{"internalType":"uint256","name":"_startingTime","type":"uint256"},{"internalType":"address","name":"_allowedAddress","type":"address"}],"name":"batchListItems","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address payable","name":"_owner","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"buyItem","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"cancelListing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"uint256","name":"_pricePerItem","type":"uint256"},{"internalType":"uint256","name":"_startingTime","type":"uint256"},{"internalType":"address","name":"_allowedAddress","type":"address"}],"name":"listItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"listings","outputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"pricePerItem","type":"uint256"},{"internalType":"uint256","name":"startingTime","type":"uint256"},{"internalType":"address","name":"allowedAddress","type":"address"}],"stateMutability":"view","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"updateListing","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50600061001b61006e565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060018055610072565b3390565b6129f8806100816000396000f3fe6080604052600436106100915760003560e01c8063b2ddee0611610059578063b2ddee06146103e8578063cd8ebb2214610421578063de25060414610474578063f2fde38b146104ae578063f772adf1146104e157610091565b806306a3d6e6146100965780636bd3a64b146101d2578063715018a6146102445780638d7c3205146102595780638da5cb5b146103b7575b600080fd5b3480156100a257600080fd5b506101d0600480360360c08110156100b957600080fd5b6001600160a01b038235169190810190604081016020820135600160201b8111156100e357600080fd5b8201836020820111156100f557600080fd5b803590602001918460208302840111600160201b8311171561011657600080fd5b919390929091602081019035600160201b81111561013357600080fd5b82018360208201111561014557600080fd5b803590602001918460208302840111600160201b8311171561016657600080fd5b919390929091602081019035600160201b81111561018357600080fd5b82018360208201111561019557600080fd5b803590602001918460208302840111600160201b831117156101b657600080fd5b9193509150803590602001356001600160a01b0316610520565b005b3480156101de57600080fd5b50610215600480360360608110156101f557600080fd5b506001600160a01b03813581169160208101359160409091013516610dd6565b604080519485526020850193909352838301919091526001600160a01b03166060830152519081900360800190f35b34801561025057600080fd5b506101d0610e17565b6101d06004803603608081101561026f57600080fd5b810190602081018135600160201b81111561028957600080fd5b82018360208201111561029b57600080fd5b803590602001918460208302840111600160201b831117156102bc57600080fd5b919390929091602081019035600160201b8111156102d957600080fd5b8201836020820111156102eb57600080fd5b803590602001918460208302840111600160201b8311171561030c57600080fd5b919390929091602081019035600160201b81111561032957600080fd5b82018360208201111561033b57600080fd5b803590602001918460208302840111600160201b8311171561035c57600080fd5b919390929091602081019035600160201b81111561037957600080fd5b82018360208201111561038b57600080fd5b803590602001918460208302840111600160201b831117156103ac57600080fd5b509092509050610ed5565b3480156103c357600080fd5b506103cc6110c9565b604080516001600160a01b039092168252519081900360200190f35b3480156103f457600080fd5b506101d06004803603604081101561040b57600080fd5b506001600160a01b0381351690602001356110d8565b34801561042d57600080fd5b506101d0600480360360c081101561044457600080fd5b506001600160a01b03813581169160208101359160408201359160608101359160808201359160a00135166111c9565b6101d06004803603608081101561048a57600080fd5b506001600160a01b038135811691602081013591604082013516906060013561166c565b3480156104ba57600080fd5b506101d0600480360360208110156104d157600080fd5b50356001600160a01b03166116cd565b3480156104ed57600080fd5b506101d06004803603606081101561050457600080fd5b506001600160a01b0381351690602081013590604001356117e1565b86610561576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20746f6b656e2049447360a01b604482015290519081900360640190fd5b600185148061056f57508487145b6105b9576040805162461bcd60e51b81526020600482015260166024820152754d69736d61746368696e67207175616e74697469657360501b604482015290519081900360640190fd5b60018314806105c6575060015b61060c576040805162461bcd60e51b81526020600482015260126024820152714d69736d61746368696e672070726963657360701b604482015290519081900360640190fd5b604080516301ffc9a760e01b81526380ac58cd60e01b600482015290516001600160a01b038b16916301ffc9a7916024808301926020929190829003018186803b15801561065957600080fd5b505afa15801561066d573d6000803e3d6000fd5b505050506040513d602081101561068357600080fd5b50511561077357886001600160a01b03811663e985e9c56106a2611bd1565b306040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b1580156106f057600080fd5b505afa158015610704573d6000803e3d6000fd5b505050506040513d602081101561071a57600080fd5b505161076d576040805162461bcd60e51b815260206004820152601d60248201527f4d75737420626520617070726f766564206265666f7265206c6973742e000000604482015290519081900360640190fd5b5061084d565b604080516301ffc9a760e01b8152636cdb3d1360e11b600482015290516001600160a01b038b16916301ffc9a7916024808301926020929190829003018186803b1580156107c057600080fd5b505afa1580156107d4573d6000803e3d6000fd5b505050506040513d60208110156107ea57600080fd5b50511561080957886001600160a01b03811663e985e9c56106a2611bd1565b6040805162461bcd60e51b815260206004820152601460248201527324b73b30b634b21027232a1030b2323932b9b99760611b604482015290519081900360640190fd5b60005b87811015610b5f57600089898381811061086657fe5b604080516301ffc9a760e01b81526380ac58cd60e01b600482015290516020928302949094013594506001600160a01b038f16936301ffc9a7935060248083019392829003018186803b1580156108bc57600080fd5b505afa1580156108d0573d6000803e3d6000fd5b505050506040513d60208110156108e657600080fd5b5051156109c8578a6108f6611bd1565b6001600160a01b0316816001600160a01b0316636352211e846040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561094357600080fd5b505afa158015610957573d6000803e3d6000fd5b505050506040513d602081101561096d57600080fd5b50516001600160a01b0316146109c2576040805162461bcd60e51b815260206004820152601560248201527426bab9ba1031329037bbb732b91037b31027232a1760591b604482015290519081900360640190fd5b50610b56565b604080516301ffc9a760e01b8152636cdb3d1360e11b600482015290516001600160a01b038d16916301ffc9a7916024808301926020929190829003018186803b158015610a1557600080fd5b505afa158015610a29573d6000803e3d6000fd5b505050506040513d6020811015610a3f57600080fd5b505115610b56578a6000888410610a695789896000818110610a5d57fe5b90506020020135610a7d565b898985818110610a7557fe5b905060200201355b905080826001600160a01b031662fdd58e610a96611bd1565b866040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b158015610adb57600080fd5b505afa158015610aef573d6000803e3d6000fd5b505050506040513d6020811015610b0557600080fd5b50511015610b53576040805162461bcd60e51b815260206004820152601660248201527526bab9ba103437b6321032b737bab3b41027232a399760511b604482015290519081900360640190fd5b50505b50600101610850565b5060005b87811015610cb4576000898983818110610b7957fe5b9050602002013590506040518060800160405280898990508410610bb05789896000818110610ba457fe5b90506020020135610bc4565b898985818110610bbc57fe5b905060200201355b8152602001868410610be95787876000818110610bdd57fe5b90506020020135610bfd565b878785818110610bf557fe5b905060200201355b815260208082018790526001600160a01b038087166040938401528e1660009081526002825282812085825290915290812090610c38611bd1565b6001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550905050508080600101915050610b63565b50886001600160a01b0316610cc7611bd1565b6001600160a01b03167f1f652c9026135855be67eb8b1bfbc96c325a447f67d9edc88d394c3c45a9db048a8a8a8a8a8a8a60006001600160a01b03168b6001600160a01b0316148b604051808060200180602001806020018781526020018615158152602001856001600160a01b0316815260200184810384528d8d82818152602001925060200280828437600083820152601f01601f191690910185810384528b8152602090810191508c908c0280828437600083820152601f01601f19169091018581038352898152602090810191508a908a0280828437600083820152604051601f909101601f19169092018290039e50909c50505050505050505050505050a3505050505050505050565b60026020818152600094855260408086208252938552838520905290835291208054600182015492820154600390920154909291906001600160a01b031684565b610e1f611bd1565b6001600160a01b0316610e306110c9565b6001600160a01b031614610e8b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60026001541415610f1b576040805162461bcd60e51b815260206004820152601f602482015260008051602061293b833981519152604482015290519081900360640190fd5b600260015586610f5f576040805162461bcd60e51b815260206004820152600a6024820152694e6f204164647265737360b01b604482015290519081900360640190fd5b848714610fab576040805162461bcd60e51b81526020600482015260156024820152744d69736d61746368696e6720746f6b656e2049447360581b604482015290519081900360640190fd5b828714610ff4576040805162461bcd60e51b81526020600482015260126024820152714d69736d61746368696e67206f776e65727360701b604482015290519081900360640190fd5b808714611041576040805162461bcd60e51b81526020600482015260166024820152754d69736d61746368696e67207175616e74697469657360501b604482015290519081900360640190fd5b60005b878110156110ba576110b289898381811061105b57fe5b905060200201356001600160a01b031688888481811061107757fe5b9050602002013587878581811061108a57fe5b905060200201356001600160a01b03168686868181106110a657fe5b90506020020135611bd5565b600101611044565b50506001805550505050505050565b6000546001600160a01b031690565b6002600154141561111e576040805162461bcd60e51b815260206004820152601f602482015260008051602061293b833981519152604482015290519081900360640190fd5b600260018190556001600160a01b03831660009081526020918252604080822084835290925290812081611150611bd1565b6001600160a01b03168152602081019190915260400160002054116111af576040805162461bcd60e51b815260206004820152601060248201526f2737ba103634b9ba32b21034ba32b69760811b604482015290519081900360640190fd5b6111c182826111bc611bd1565b6124b4565b505060018055565b604080516301ffc9a760e01b81526380ac58cd60e01b600482015290516001600160a01b038816916301ffc9a7916024808301926020929190829003018186803b15801561121657600080fd5b505afa15801561122a573d6000803e3d6000fd5b505050506040513d602081101561124057600080fd5b5051156114045785611250611bd1565b6001600160a01b0316816001600160a01b0316636352211e886040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561129d57600080fd5b505afa1580156112b1573d6000803e3d6000fd5b505050506040513d60208110156112c757600080fd5b50516001600160a01b03161461131c576040805162461bcd60e51b815260206004820152601560248201527426bab9ba1031329037bbb732b91037b31027232a1760591b604482015290519081900360640190fd5b806001600160a01b031663e985e9c5611333611bd1565b306040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b15801561138157600080fd5b505afa158015611395573d6000803e3d6000fd5b505050506040513d60208110156113ab57600080fd5b50516113fe576040805162461bcd60e51b815260206004820152601d60248201527f4d75737420626520617070726f766564206265666f7265206c6973742e000000604482015290519081900360640190fd5b50611557565b604080516301ffc9a760e01b8152636cdb3d1360e11b600482015290516001600160a01b038816916301ffc9a7916024808301926020929190829003018186803b15801561145157600080fd5b505afa158015611465573d6000803e3d6000fd5b505050506040513d602081101561147b57600080fd5b5051156108095785846001600160a01b03821662fdd58e61149a611bd1565b896040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b1580156114df57600080fd5b505afa1580156114f3573d6000803e3d6000fd5b505050506040513d602081101561150957600080fd5b5051101561131c576040805162461bcd60e51b815260206004820152601660248201527526bab9ba103437b6321032b737bab3b41027232a399760511b604482015290519081900360640190fd5b6040805160808101825285815260208082018690528183018590526001600160a01b038085166060840152891660009081526002825283812089825290915291822090916115a3611bd1565b6001600160a01b039081168252602080830193909352604091820160002084518155928401516001840155908301516002830155606090920151600390910180546001600160a01b0319169183169190911790558616611601611bd1565b6040805188815260208101889052808201879052606081018690526001600160a01b038581168015608084015260a0830152915192909116917fe52684a5a20c6fa5a196c62108b480dd4eaf0d45a6d0bbcec2ce39ceff96553b9181900360c00190a3505050505050565b600260015414156116b2576040805162461bcd60e51b815260206004820152601f602482015260008051602061293b833981519152604482015290519081900360640190fd5b60026001556116c384848484611bd5565b5050600180555050565b6116d5611bd1565b6001600160a01b03166116e66110c9565b6001600160a01b031614611741576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166117865760405162461bcd60e51b815260040180806020018281038252602681526020018061295b6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60026001541415611827576040805162461bcd60e51b815260206004820152601f602482015260008051602061293b833981519152604482015290519081900360640190fd5b600260018190556001600160a01b03841660009081526020918252604080822085835290925290812081611859611bd1565b6001600160a01b03168152602081019190915260400160002080549091506118bb576040805162461bcd60e51b815260206004820152601060248201526f2737ba103634b9ba32b21034ba32b69760811b604482015290519081900360640190fd5b604080516301ffc9a760e01b81526380ac58cd60e01b600482015290516001600160a01b038616916301ffc9a7916024808301926020929190829003018186803b15801561190857600080fd5b505afa15801561191c573d6000803e3d6000fd5b505050506040513d602081101561193257600080fd5b505115611a135783611942611bd1565b6001600160a01b0316816001600160a01b0316636352211e866040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561198f57600080fd5b505afa1580156119a3573d6000803e3d6000fd5b505050506040513d60208110156119b957600080fd5b50516001600160a01b031614611a0d576040805162461bcd60e51b81526020600482015260146024820152732737ba1037bbb734b733903a34329034ba32b69760611b604482015290519081900360640190fd5b50611b66565b604080516301ffc9a760e01b8152636cdb3d1360e11b600482015290516001600160a01b038616916301ffc9a7916024808301926020929190829003018186803b158015611a6057600080fd5b505afa158015611a74573d6000803e3d6000fd5b505050506040513d6020811015611a8a57600080fd5b50511561080957805484906001600160a01b03821662fdd58e611aab611bd1565b876040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b158015611af057600080fd5b505afa158015611b04573d6000803e3d6000fd5b505050506040513d6020811015611b1a57600080fd5b50511015611a0d576040805162461bcd60e51b81526020600482015260146024820152732737ba1037bbb734b733903a34329034ba32b69760611b604482015290519081900360640190fd5b600181018290556001600160a01b038416611b7f611bd1565b6001600160a01b03167f3c33e65e8698294810b631d476d60b44425303828da0b1f8b635231bfda12be28585604051808381526020018281526020019250505060405180910390a35050600180555050565b3390565b611bdd612909565b506001600160a01b03808516600090815260026020818152604080842088855282528084208786168552825292839020835160808101855281548152600182015492810192909252918201549281019290925260030154909116606082015281611c81576040805162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b604482015290519081900360640190fd5b8051611cc7576040805162461bcd60e51b815260206004820152601060248201526f2737ba103634b9ba32b21034ba32b69760811b604482015290519081900360640190fd5b8051821115611d13576040805162461bcd60e51b81526020600482015260136024820152722737ba1032b737bab3b41037b71039b0b6329760691b604482015290519081900360640190fd5b604080516301ffc9a760e01b81526380ac58cd60e01b600482015290516001600160a01b038716916301ffc9a7916024808301926020929190829003018186803b158015611d6057600080fd5b505afa158015611d74573d6000803e3d6000fd5b505050506040513d6020811015611d8a57600080fd5b505115611e68576000859050836001600160a01b0316816001600160a01b0316636352211e876040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015611de457600080fd5b505afa158015611df8573d6000803e3d6000fd5b505050506040513d6020811015611e0e57600080fd5b50516001600160a01b031614611e62576040805162461bcd60e51b81526020600482015260146024820152732737ba1037bbb734b733903a34329034ba32b69760611b604482015290519081900360640190fd5b50611fae565b604080516301ffc9a760e01b8152636cdb3d1360e11b600482015290516001600160a01b038716916301ffc9a7916024808301926020929190829003018186803b158015611eb557600080fd5b505afa158015611ec9573d6000803e3d6000fd5b505050506040513d6020811015611edf57600080fd5b50511561080957805160408051627eeac760e11b81526001600160a01b03868116600483015260248201889052915188939284169162fdd58e916044808301926020929190829003018186803b158015611f3857600080fd5b505afa158015611f4c573d6000803e3d6000fd5b505050506040513d6020811015611f6257600080fd5b50511015611e62576040805162461bcd60e51b81526020600482015260146024820152732737ba1037bbb734b733903a34329034ba32b69760611b604482015290519081900360640190fd5b8060400151611fbb61283c565b101561200e576040805162461bcd60e51b815260206004820152601860248201527f4974656d206973206e6f742062757961626c65207965742e0000000000000000604482015290519081900360640190fd5b602081015161201d9083612840565b341015612071576040805162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f75676820616d6f756e7420746f20627579206974656d2e0000604482015290519081900360640190fd5b60608101516001600160a01b0316156120df5761208c611bd1565b6001600160a01b031681606001516001600160a01b0316146120df5760405162461bcd60e51b81526004018080602001828103825260218152602001806129a26021913960400191505060405180910390fd5b6000836001600160a01b031661210284846020015161284090919063ffffffff16565b604051600081818185875af1925050503d806000811461213e576040519150601f19603f3d011682016040523d82523d6000602084013e612143565b606091505b5050905080612199576040805162461bcd60e51b815260206004820181905260248201527f466978656453616c653a204f776e6572207472616e73666572206661696c6564604482015290519081900360640190fd5b604080516301ffc9a760e01b81526380ac58cd60e01b600482015290516001600160a01b038816916301ffc9a7916024808301926020929190829003018186803b1580156121e657600080fd5b505afa1580156121fa573d6000803e3d6000fd5b505050506040513d602081101561221057600080fd5b5051156122a357856001600160a01b03166342842e0e8561222f611bd1565b886040518463ffffffff1660e01b815260040180846001600160a01b03168152602001836001600160a01b031681526020018281526020019350505050600060405180830381600087803b15801561228657600080fd5b505af115801561229a573d6000803e3d6000fd5b505050506123ac565b856001600160a01b031663f242432a856122bb611bd1565b8887604051806020016040528060008152506040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561234357818101518382015260200161232b565b50505050905090810190601f1680156123705780820380516001836020036101000a031916815260200191505b509650505050505050600060405180830381600087803b15801561239357600080fd5b505af11580156123a7573d6000803e3d6000fd5b505050505b856001600160a01b03166123be611bd1565b83516001600160a01b03918216918716907f57d8d9cd489eb6f4aa398aa92b49d164d28fde9e7000b5c186bf1b3647a9ebb79089906123fd34826128a2565b60408051938452602084019290925282820152519081900360600190a4815183101561245d5781516001600160a01b0380881660009081526002602090815260408083208a845282528083209389168352929052209084900390556124ac565b6001600160a01b0380871660009081526002602081815260408084208a855282528084209489168452939052918120818155600181018290559182015560030180546001600160a01b03191690555b505050505050565b6124bc612909565b506001600160a01b03808416600081815260026020818152604080842088855282528084208787168552825292839020835160808101855281548152600182015481840152928101548385015260030154909416606082015281516301ffc9a760e01b81526380ac58cd60e01b6004820152915190936301ffc9a79260248082019391829003018186803b15801561255357600080fd5b505afa158015612567573d6000803e3d6000fd5b505050506040513d602081101561257d57600080fd5b50511561265b576000849050826001600160a01b0316816001600160a01b0316636352211e866040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156125d757600080fd5b505afa1580156125eb573d6000803e3d6000fd5b505050506040513d602081101561260157600080fd5b50516001600160a01b031614612655576040805162461bcd60e51b81526020600482015260146024820152732737ba1037bbb734b733903a34329034ba32b69760611b604482015290519081900360640190fd5b506127ae565b604080516301ffc9a760e01b8152636cdb3d1360e11b600482015290516001600160a01b038616916301ffc9a7916024808301926020929190829003018186803b1580156126a857600080fd5b505afa1580156126bc573d6000803e3d6000fd5b505050506040513d60208110156126d257600080fd5b50511561080957805184906001600160a01b03821662fdd58e6126f3611bd1565b876040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b15801561273857600080fd5b505afa15801561274c573d6000803e3d6000fd5b505050506040513d602081101561276257600080fd5b50511015612655576040805162461bcd60e51b81526020600482015260146024820152732737ba1037bbb734b733903a34329034ba32b69760611b604482015290519081900360640190fd5b6001600160a01b03808516600081815260026020818152604080842089855282528084209588168085529582528084208481556001810185905592830193909355600390910180546001600160a01b0319169055815187815291519293927f9ba1a3cb55ce8d63d072a886f94d2a744f50cddf82128e897d0661f5ec6231589281900390910190a350505050565b4290565b60008261284f5750600061289c565b8282028284828161285c57fe5b04146128995760405162461bcd60e51b81526004018080602001828103825260218152602001806129816021913960400191505060405180910390fd5b90505b92915050565b60008082116128f8576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161290157fe5b049392505050565b604051806080016040528060008152602001600081526020016000815260200160006001600160a01b03168152509056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77596f7520617265206e6f7420656c696761626c6520746f20627579206974656d2ea26469706673582212208afc7523f9a50462cc080474f69859de952f5281b01d6d17974894f7773119cb64736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106100915760003560e01c8063b2ddee0611610059578063b2ddee06146103e8578063cd8ebb2214610421578063de25060414610474578063f2fde38b146104ae578063f772adf1146104e157610091565b806306a3d6e6146100965780636bd3a64b146101d2578063715018a6146102445780638d7c3205146102595780638da5cb5b146103b7575b600080fd5b3480156100a257600080fd5b506101d0600480360360c08110156100b957600080fd5b6001600160a01b038235169190810190604081016020820135600160201b8111156100e357600080fd5b8201836020820111156100f557600080fd5b803590602001918460208302840111600160201b8311171561011657600080fd5b919390929091602081019035600160201b81111561013357600080fd5b82018360208201111561014557600080fd5b803590602001918460208302840111600160201b8311171561016657600080fd5b919390929091602081019035600160201b81111561018357600080fd5b82018360208201111561019557600080fd5b803590602001918460208302840111600160201b831117156101b657600080fd5b9193509150803590602001356001600160a01b0316610520565b005b3480156101de57600080fd5b50610215600480360360608110156101f557600080fd5b506001600160a01b03813581169160208101359160409091013516610dd6565b604080519485526020850193909352838301919091526001600160a01b03166060830152519081900360800190f35b34801561025057600080fd5b506101d0610e17565b6101d06004803603608081101561026f57600080fd5b810190602081018135600160201b81111561028957600080fd5b82018360208201111561029b57600080fd5b803590602001918460208302840111600160201b831117156102bc57600080fd5b919390929091602081019035600160201b8111156102d957600080fd5b8201836020820111156102eb57600080fd5b803590602001918460208302840111600160201b8311171561030c57600080fd5b919390929091602081019035600160201b81111561032957600080fd5b82018360208201111561033b57600080fd5b803590602001918460208302840111600160201b8311171561035c57600080fd5b919390929091602081019035600160201b81111561037957600080fd5b82018360208201111561038b57600080fd5b803590602001918460208302840111600160201b831117156103ac57600080fd5b509092509050610ed5565b3480156103c357600080fd5b506103cc6110c9565b604080516001600160a01b039092168252519081900360200190f35b3480156103f457600080fd5b506101d06004803603604081101561040b57600080fd5b506001600160a01b0381351690602001356110d8565b34801561042d57600080fd5b506101d0600480360360c081101561044457600080fd5b506001600160a01b03813581169160208101359160408201359160608101359160808201359160a00135166111c9565b6101d06004803603608081101561048a57600080fd5b506001600160a01b038135811691602081013591604082013516906060013561166c565b3480156104ba57600080fd5b506101d0600480360360208110156104d157600080fd5b50356001600160a01b03166116cd565b3480156104ed57600080fd5b506101d06004803603606081101561050457600080fd5b506001600160a01b0381351690602081013590604001356117e1565b86610561576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20746f6b656e2049447360a01b604482015290519081900360640190fd5b600185148061056f57508487145b6105b9576040805162461bcd60e51b81526020600482015260166024820152754d69736d61746368696e67207175616e74697469657360501b604482015290519081900360640190fd5b60018314806105c6575060015b61060c576040805162461bcd60e51b81526020600482015260126024820152714d69736d61746368696e672070726963657360701b604482015290519081900360640190fd5b604080516301ffc9a760e01b81526380ac58cd60e01b600482015290516001600160a01b038b16916301ffc9a7916024808301926020929190829003018186803b15801561065957600080fd5b505afa15801561066d573d6000803e3d6000fd5b505050506040513d602081101561068357600080fd5b50511561077357886001600160a01b03811663e985e9c56106a2611bd1565b306040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b1580156106f057600080fd5b505afa158015610704573d6000803e3d6000fd5b505050506040513d602081101561071a57600080fd5b505161076d576040805162461bcd60e51b815260206004820152601d60248201527f4d75737420626520617070726f766564206265666f7265206c6973742e000000604482015290519081900360640190fd5b5061084d565b604080516301ffc9a760e01b8152636cdb3d1360e11b600482015290516001600160a01b038b16916301ffc9a7916024808301926020929190829003018186803b1580156107c057600080fd5b505afa1580156107d4573d6000803e3d6000fd5b505050506040513d60208110156107ea57600080fd5b50511561080957886001600160a01b03811663e985e9c56106a2611bd1565b6040805162461bcd60e51b815260206004820152601460248201527324b73b30b634b21027232a1030b2323932b9b99760611b604482015290519081900360640190fd5b60005b87811015610b5f57600089898381811061086657fe5b604080516301ffc9a760e01b81526380ac58cd60e01b600482015290516020928302949094013594506001600160a01b038f16936301ffc9a7935060248083019392829003018186803b1580156108bc57600080fd5b505afa1580156108d0573d6000803e3d6000fd5b505050506040513d60208110156108e657600080fd5b5051156109c8578a6108f6611bd1565b6001600160a01b0316816001600160a01b0316636352211e846040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561094357600080fd5b505afa158015610957573d6000803e3d6000fd5b505050506040513d602081101561096d57600080fd5b50516001600160a01b0316146109c2576040805162461bcd60e51b815260206004820152601560248201527426bab9ba1031329037bbb732b91037b31027232a1760591b604482015290519081900360640190fd5b50610b56565b604080516301ffc9a760e01b8152636cdb3d1360e11b600482015290516001600160a01b038d16916301ffc9a7916024808301926020929190829003018186803b158015610a1557600080fd5b505afa158015610a29573d6000803e3d6000fd5b505050506040513d6020811015610a3f57600080fd5b505115610b56578a6000888410610a695789896000818110610a5d57fe5b90506020020135610a7d565b898985818110610a7557fe5b905060200201355b905080826001600160a01b031662fdd58e610a96611bd1565b866040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b158015610adb57600080fd5b505afa158015610aef573d6000803e3d6000fd5b505050506040513d6020811015610b0557600080fd5b50511015610b53576040805162461bcd60e51b815260206004820152601660248201527526bab9ba103437b6321032b737bab3b41027232a399760511b604482015290519081900360640190fd5b50505b50600101610850565b5060005b87811015610cb4576000898983818110610b7957fe5b9050602002013590506040518060800160405280898990508410610bb05789896000818110610ba457fe5b90506020020135610bc4565b898985818110610bbc57fe5b905060200201355b8152602001868410610be95787876000818110610bdd57fe5b90506020020135610bfd565b878785818110610bf557fe5b905060200201355b815260208082018790526001600160a01b038087166040938401528e1660009081526002825282812085825290915290812090610c38611bd1565b6001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550905050508080600101915050610b63565b50886001600160a01b0316610cc7611bd1565b6001600160a01b03167f1f652c9026135855be67eb8b1bfbc96c325a447f67d9edc88d394c3c45a9db048a8a8a8a8a8a8a60006001600160a01b03168b6001600160a01b0316148b604051808060200180602001806020018781526020018615158152602001856001600160a01b0316815260200184810384528d8d82818152602001925060200280828437600083820152601f01601f191690910185810384528b8152602090810191508c908c0280828437600083820152601f01601f19169091018581038352898152602090810191508a908a0280828437600083820152604051601f909101601f19169092018290039e50909c50505050505050505050505050a3505050505050505050565b60026020818152600094855260408086208252938552838520905290835291208054600182015492820154600390920154909291906001600160a01b031684565b610e1f611bd1565b6001600160a01b0316610e306110c9565b6001600160a01b031614610e8b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60026001541415610f1b576040805162461bcd60e51b815260206004820152601f602482015260008051602061293b833981519152604482015290519081900360640190fd5b600260015586610f5f576040805162461bcd60e51b815260206004820152600a6024820152694e6f204164647265737360b01b604482015290519081900360640190fd5b848714610fab576040805162461bcd60e51b81526020600482015260156024820152744d69736d61746368696e6720746f6b656e2049447360581b604482015290519081900360640190fd5b828714610ff4576040805162461bcd60e51b81526020600482015260126024820152714d69736d61746368696e67206f776e65727360701b604482015290519081900360640190fd5b808714611041576040805162461bcd60e51b81526020600482015260166024820152754d69736d61746368696e67207175616e74697469657360501b604482015290519081900360640190fd5b60005b878110156110ba576110b289898381811061105b57fe5b905060200201356001600160a01b031688888481811061107757fe5b9050602002013587878581811061108a57fe5b905060200201356001600160a01b03168686868181106110a657fe5b90506020020135611bd5565b600101611044565b50506001805550505050505050565b6000546001600160a01b031690565b6002600154141561111e576040805162461bcd60e51b815260206004820152601f602482015260008051602061293b833981519152604482015290519081900360640190fd5b600260018190556001600160a01b03831660009081526020918252604080822084835290925290812081611150611bd1565b6001600160a01b03168152602081019190915260400160002054116111af576040805162461bcd60e51b815260206004820152601060248201526f2737ba103634b9ba32b21034ba32b69760811b604482015290519081900360640190fd5b6111c182826111bc611bd1565b6124b4565b505060018055565b604080516301ffc9a760e01b81526380ac58cd60e01b600482015290516001600160a01b038816916301ffc9a7916024808301926020929190829003018186803b15801561121657600080fd5b505afa15801561122a573d6000803e3d6000fd5b505050506040513d602081101561124057600080fd5b5051156114045785611250611bd1565b6001600160a01b0316816001600160a01b0316636352211e886040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561129d57600080fd5b505afa1580156112b1573d6000803e3d6000fd5b505050506040513d60208110156112c757600080fd5b50516001600160a01b03161461131c576040805162461bcd60e51b815260206004820152601560248201527426bab9ba1031329037bbb732b91037b31027232a1760591b604482015290519081900360640190fd5b806001600160a01b031663e985e9c5611333611bd1565b306040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b15801561138157600080fd5b505afa158015611395573d6000803e3d6000fd5b505050506040513d60208110156113ab57600080fd5b50516113fe576040805162461bcd60e51b815260206004820152601d60248201527f4d75737420626520617070726f766564206265666f7265206c6973742e000000604482015290519081900360640190fd5b50611557565b604080516301ffc9a760e01b8152636cdb3d1360e11b600482015290516001600160a01b038816916301ffc9a7916024808301926020929190829003018186803b15801561145157600080fd5b505afa158015611465573d6000803e3d6000fd5b505050506040513d602081101561147b57600080fd5b5051156108095785846001600160a01b03821662fdd58e61149a611bd1565b896040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b1580156114df57600080fd5b505afa1580156114f3573d6000803e3d6000fd5b505050506040513d602081101561150957600080fd5b5051101561131c576040805162461bcd60e51b815260206004820152601660248201527526bab9ba103437b6321032b737bab3b41027232a399760511b604482015290519081900360640190fd5b6040805160808101825285815260208082018690528183018590526001600160a01b038085166060840152891660009081526002825283812089825290915291822090916115a3611bd1565b6001600160a01b039081168252602080830193909352604091820160002084518155928401516001840155908301516002830155606090920151600390910180546001600160a01b0319169183169190911790558616611601611bd1565b6040805188815260208101889052808201879052606081018690526001600160a01b038581168015608084015260a0830152915192909116917fe52684a5a20c6fa5a196c62108b480dd4eaf0d45a6d0bbcec2ce39ceff96553b9181900360c00190a3505050505050565b600260015414156116b2576040805162461bcd60e51b815260206004820152601f602482015260008051602061293b833981519152604482015290519081900360640190fd5b60026001556116c384848484611bd5565b5050600180555050565b6116d5611bd1565b6001600160a01b03166116e66110c9565b6001600160a01b031614611741576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166117865760405162461bcd60e51b815260040180806020018281038252602681526020018061295b6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60026001541415611827576040805162461bcd60e51b815260206004820152601f602482015260008051602061293b833981519152604482015290519081900360640190fd5b600260018190556001600160a01b03841660009081526020918252604080822085835290925290812081611859611bd1565b6001600160a01b03168152602081019190915260400160002080549091506118bb576040805162461bcd60e51b815260206004820152601060248201526f2737ba103634b9ba32b21034ba32b69760811b604482015290519081900360640190fd5b604080516301ffc9a760e01b81526380ac58cd60e01b600482015290516001600160a01b038616916301ffc9a7916024808301926020929190829003018186803b15801561190857600080fd5b505afa15801561191c573d6000803e3d6000fd5b505050506040513d602081101561193257600080fd5b505115611a135783611942611bd1565b6001600160a01b0316816001600160a01b0316636352211e866040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561198f57600080fd5b505afa1580156119a3573d6000803e3d6000fd5b505050506040513d60208110156119b957600080fd5b50516001600160a01b031614611a0d576040805162461bcd60e51b81526020600482015260146024820152732737ba1037bbb734b733903a34329034ba32b69760611b604482015290519081900360640190fd5b50611b66565b604080516301ffc9a760e01b8152636cdb3d1360e11b600482015290516001600160a01b038616916301ffc9a7916024808301926020929190829003018186803b158015611a6057600080fd5b505afa158015611a74573d6000803e3d6000fd5b505050506040513d6020811015611a8a57600080fd5b50511561080957805484906001600160a01b03821662fdd58e611aab611bd1565b876040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b158015611af057600080fd5b505afa158015611b04573d6000803e3d6000fd5b505050506040513d6020811015611b1a57600080fd5b50511015611a0d576040805162461bcd60e51b81526020600482015260146024820152732737ba1037bbb734b733903a34329034ba32b69760611b604482015290519081900360640190fd5b600181018290556001600160a01b038416611b7f611bd1565b6001600160a01b03167f3c33e65e8698294810b631d476d60b44425303828da0b1f8b635231bfda12be28585604051808381526020018281526020019250505060405180910390a35050600180555050565b3390565b611bdd612909565b506001600160a01b03808516600090815260026020818152604080842088855282528084208786168552825292839020835160808101855281548152600182015492810192909252918201549281019290925260030154909116606082015281611c81576040805162461bcd60e51b815260206004820152601060248201526f496e76616c6964207175616e7469747960801b604482015290519081900360640190fd5b8051611cc7576040805162461bcd60e51b815260206004820152601060248201526f2737ba103634b9ba32b21034ba32b69760811b604482015290519081900360640190fd5b8051821115611d13576040805162461bcd60e51b81526020600482015260136024820152722737ba1032b737bab3b41037b71039b0b6329760691b604482015290519081900360640190fd5b604080516301ffc9a760e01b81526380ac58cd60e01b600482015290516001600160a01b038716916301ffc9a7916024808301926020929190829003018186803b158015611d6057600080fd5b505afa158015611d74573d6000803e3d6000fd5b505050506040513d6020811015611d8a57600080fd5b505115611e68576000859050836001600160a01b0316816001600160a01b0316636352211e876040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015611de457600080fd5b505afa158015611df8573d6000803e3d6000fd5b505050506040513d6020811015611e0e57600080fd5b50516001600160a01b031614611e62576040805162461bcd60e51b81526020600482015260146024820152732737ba1037bbb734b733903a34329034ba32b69760611b604482015290519081900360640190fd5b50611fae565b604080516301ffc9a760e01b8152636cdb3d1360e11b600482015290516001600160a01b038716916301ffc9a7916024808301926020929190829003018186803b158015611eb557600080fd5b505afa158015611ec9573d6000803e3d6000fd5b505050506040513d6020811015611edf57600080fd5b50511561080957805160408051627eeac760e11b81526001600160a01b03868116600483015260248201889052915188939284169162fdd58e916044808301926020929190829003018186803b158015611f3857600080fd5b505afa158015611f4c573d6000803e3d6000fd5b505050506040513d6020811015611f6257600080fd5b50511015611e62576040805162461bcd60e51b81526020600482015260146024820152732737ba1037bbb734b733903a34329034ba32b69760611b604482015290519081900360640190fd5b8060400151611fbb61283c565b101561200e576040805162461bcd60e51b815260206004820152601860248201527f4974656d206973206e6f742062757961626c65207965742e0000000000000000604482015290519081900360640190fd5b602081015161201d9083612840565b341015612071576040805162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f75676820616d6f756e7420746f20627579206974656d2e0000604482015290519081900360640190fd5b60608101516001600160a01b0316156120df5761208c611bd1565b6001600160a01b031681606001516001600160a01b0316146120df5760405162461bcd60e51b81526004018080602001828103825260218152602001806129a26021913960400191505060405180910390fd5b6000836001600160a01b031661210284846020015161284090919063ffffffff16565b604051600081818185875af1925050503d806000811461213e576040519150601f19603f3d011682016040523d82523d6000602084013e612143565b606091505b5050905080612199576040805162461bcd60e51b815260206004820181905260248201527f466978656453616c653a204f776e6572207472616e73666572206661696c6564604482015290519081900360640190fd5b604080516301ffc9a760e01b81526380ac58cd60e01b600482015290516001600160a01b038816916301ffc9a7916024808301926020929190829003018186803b1580156121e657600080fd5b505afa1580156121fa573d6000803e3d6000fd5b505050506040513d602081101561221057600080fd5b5051156122a357856001600160a01b03166342842e0e8561222f611bd1565b886040518463ffffffff1660e01b815260040180846001600160a01b03168152602001836001600160a01b031681526020018281526020019350505050600060405180830381600087803b15801561228657600080fd5b505af115801561229a573d6000803e3d6000fd5b505050506123ac565b856001600160a01b031663f242432a856122bb611bd1565b8887604051806020016040528060008152506040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561234357818101518382015260200161232b565b50505050905090810190601f1680156123705780820380516001836020036101000a031916815260200191505b509650505050505050600060405180830381600087803b15801561239357600080fd5b505af11580156123a7573d6000803e3d6000fd5b505050505b856001600160a01b03166123be611bd1565b83516001600160a01b03918216918716907f57d8d9cd489eb6f4aa398aa92b49d164d28fde9e7000b5c186bf1b3647a9ebb79089906123fd34826128a2565b60408051938452602084019290925282820152519081900360600190a4815183101561245d5781516001600160a01b0380881660009081526002602090815260408083208a845282528083209389168352929052209084900390556124ac565b6001600160a01b0380871660009081526002602081815260408084208a855282528084209489168452939052918120818155600181018290559182015560030180546001600160a01b03191690555b505050505050565b6124bc612909565b506001600160a01b03808416600081815260026020818152604080842088855282528084208787168552825292839020835160808101855281548152600182015481840152928101548385015260030154909416606082015281516301ffc9a760e01b81526380ac58cd60e01b6004820152915190936301ffc9a79260248082019391829003018186803b15801561255357600080fd5b505afa158015612567573d6000803e3d6000fd5b505050506040513d602081101561257d57600080fd5b50511561265b576000849050826001600160a01b0316816001600160a01b0316636352211e866040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156125d757600080fd5b505afa1580156125eb573d6000803e3d6000fd5b505050506040513d602081101561260157600080fd5b50516001600160a01b031614612655576040805162461bcd60e51b81526020600482015260146024820152732737ba1037bbb734b733903a34329034ba32b69760611b604482015290519081900360640190fd5b506127ae565b604080516301ffc9a760e01b8152636cdb3d1360e11b600482015290516001600160a01b038616916301ffc9a7916024808301926020929190829003018186803b1580156126a857600080fd5b505afa1580156126bc573d6000803e3d6000fd5b505050506040513d60208110156126d257600080fd5b50511561080957805184906001600160a01b03821662fdd58e6126f3611bd1565b876040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b15801561273857600080fd5b505afa15801561274c573d6000803e3d6000fd5b505050506040513d602081101561276257600080fd5b50511015612655576040805162461bcd60e51b81526020600482015260146024820152732737ba1037bbb734b733903a34329034ba32b69760611b604482015290519081900360640190fd5b6001600160a01b03808516600081815260026020818152604080842089855282528084209588168085529582528084208481556001810185905592830193909355600390910180546001600160a01b0319169055815187815291519293927f9ba1a3cb55ce8d63d072a886f94d2a744f50cddf82128e897d0661f5ec6231589281900390910190a350505050565b4290565b60008261284f5750600061289c565b8282028284828161285c57fe5b04146128995760405162461bcd60e51b81526004018080602001828103825260218152602001806129816021913960400191505060405180910390fd5b90505b92915050565b60008082116128f8576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161290157fe5b049392505050565b604051806080016040528060008152602001600081526020016000815260200160006001600160a01b03168152509056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77596f7520617265206e6f7420656c696761626c6520746f20627579206974656d2ea26469706673582212208afc7523f9a50462cc080474f69859de952f5281b01d6d17974894f7773119cb64736f6c634300060c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
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.