More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 194 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 17342464 | 551 days ago | IN | 0 ETH | 0.00082925 | ||||
Burn NF Ts | 17338900 | 551 days ago | IN | 0.12 ETH | 0.0224381 | ||||
Burn NF Ts | 17338846 | 551 days ago | IN | 0.04 ETH | 0.00724351 | ||||
Withdraw | 17337841 | 551 days ago | IN | 0 ETH | 0.00124544 | ||||
Burn NF Ts | 17337449 | 551 days ago | IN | 0.01 ETH | 0.00671498 | ||||
Burn NF Ts | 17337241 | 551 days ago | IN | 0.01 ETH | 0.01096223 | ||||
Burn NF Ts | 17336853 | 552 days ago | IN | 0.01 ETH | 0.00591092 | ||||
Burn NF Ts | 17336639 | 552 days ago | IN | 0.5 ETH | 0.148055 | ||||
Burn NF Ts | 17336633 | 552 days ago | IN | 0.48 ETH | 0.1543307 | ||||
Burn NF Ts | 17336520 | 552 days ago | IN | 0.01 ETH | 0.0046612 | ||||
Burn NF Ts | 17336519 | 552 days ago | IN | 0.01 ETH | 0.00527316 | ||||
Burn NF Ts | 17336511 | 552 days ago | IN | 0.5 ETH | 0.09907359 | ||||
Burn NF Ts | 17336482 | 552 days ago | IN | 0.5 ETH | 0.11443811 | ||||
Burn NF Ts | 17336406 | 552 days ago | IN | 0.01 ETH | 0.00402982 | ||||
Burn NF Ts | 17336099 | 552 days ago | IN | 0.56 ETH | 0.12215401 | ||||
Burn NF Ts | 17335895 | 552 days ago | IN | 0.01 ETH | 0.00090374 | ||||
Burn NF Ts | 17335856 | 552 days ago | IN | 0.4 ETH | 0.05868931 | ||||
Burn NF Ts | 17335799 | 552 days ago | IN | 0.01 ETH | 0.00506628 | ||||
Burn NF Ts | 17335792 | 552 days ago | IN | 0.01 ETH | 0.00638234 | ||||
Burn NF Ts | 17335784 | 552 days ago | IN | 0.01 ETH | 0.00593408 | ||||
Burn NF Ts | 17335779 | 552 days ago | IN | 0.01 ETH | 0.00600898 | ||||
Burn NF Ts | 17335771 | 552 days ago | IN | 0.01 ETH | 0.00596429 | ||||
Burn NF Ts | 17335763 | 552 days ago | IN | 0.01 ETH | 0.0055408 | ||||
Burn NF Ts | 17335755 | 552 days ago | IN | 0.01 ETH | 0.0008762 | ||||
Burn NF Ts | 17335751 | 552 days ago | IN | 0.01 ETH | 0.00331055 |
Loading...
Loading
Contract Name:
PaperclipsNFTBurner
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; contract PaperclipsNFTBurner is Ownable { using Address for address; IERC20 public clipsToken; uint256 public burntCount = 0; constructor(IERC20 _clipsToken) { clipsToken = _clipsToken; } function burnNFTs( address[] calldata nftAddresses, uint256[] calldata _tokenIds ) external payable { require( msg.value == 0.01 ether * _tokenIds.length, "Must send 0.01 ETH per NFT" ); require( nftAddresses.length == _tokenIds.length, "NFT Addresses and token IDs count must be the same" ); for (uint256 i = 0; i < _tokenIds.length; i++) { address nftAddress = nftAddresses[i]; uint256 _tokenId = _tokenIds[i]; IERC721 musicNFT = IERC721(nftAddress); require( musicNFT.ownerOf(_tokenId) == msg.sender, "Must own the NFT" ); ( bool successMetadataModule, bytes memory dataMetadataModule ) = nftAddress.call(abi.encodeWithSignature("metadataModule()")); ( bool successSoundRecoveryAddress, bytes memory dataSoundRecoveryAddress ) = nftAddress.call( abi.encodeWithSignature("soundRecoveryAddress()") ); require( (successMetadataModule && dataMetadataModule.length > 0) || (successSoundRecoveryAddress && dataSoundRecoveryAddress.length > 0), "NFT contract does not have metadataModule or soundRecoveryAddress function" ); uint256 clipsAmount; if (burntCount < 100) { clipsAmount = 1000000000 * 10**18; } else if (burntCount < 1100) { clipsAmount = 100000000 * 10**18; } else if (burntCount < 11100) { clipsAmount = 10000000 * 10**18; } else if (burntCount < 111100) { clipsAmount = 1000000 * 10**18; } else { clipsAmount = 100000 * 10**18; } // Transfer the NFT to the contract address, burning it musicNFT.transferFrom(msg.sender, address(this), _tokenId); // Check that there are enough CLIPS tokens to transfer require( clipsToken.balanceOf(address(this)) >= clipsAmount, "Not enough tokens left" ); // Transfer CLIPS tokens require( clipsToken.transfer(msg.sender, clipsAmount), "Transfer failed" ); burntCount++; } } function withdraw() external onlyOwner { payable(owner()).transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"_clipsToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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[]"}],"name":"burnNFTs","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"burntCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clipsToken","outputs":[{"internalType":"contract IERC20","name":"","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006002553480156200001657600080fd5b50604051620016fb380380620016fb83398181016040528101906200003c9190620001ee565b6200005c62000050620000a460201b60201c565b620000ac60201b60201c565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000220565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620001a28262000175565b9050919050565b6000620001b68262000195565b9050919050565b620001c881620001a9565b8114620001d457600080fd5b50565b600081519050620001e881620001bd565b92915050565b60006020828403121562000207576200020662000170565b5b60006200021784828501620001d7565b91505092915050565b6114cb80620002306000396000f3fe6080604052600436106100705760003560e01c8063715018a61161004e578063715018a6146100d35780638da5cb5b146100ea578063b82cb95a14610115578063f2fde38b1461014057610070565b806303fbcf68146100755780633ccfd60b1461009157806346b260ac146100a8575b600080fd5b61008f600480360381019061008a9190610bd8565b610169565b005b34801561009d57600080fd5b506100a6610885565b005b3480156100b457600080fd5b506100bd6108dd565b6040516100ca9190610c72565b60405180910390f35b3480156100df57600080fd5b506100e86108e3565b005b3480156100f657600080fd5b506100ff6108f7565b60405161010c9190610cce565b60405180910390f35b34801561012157600080fd5b5061012a610920565b6040516101379190610d48565b60405180910390f35b34801561014c57600080fd5b5061016760048036038101906101629190610d8f565b610946565b005b81819050662386f26fc1000061017f9190610deb565b34146101c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101b790610e8a565b60405180910390fd5b818190508484905014610208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101ff90610f1c565b60405180910390fd5b60005b8282905081101561087e57600085858381811061022b5761022a610f3c565b5b90506020020160208101906102409190610d8f565b9050600084848481811061025757610256610f3c565b5b90506020020135905060008290503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b81526004016102b59190610c72565b602060405180830381865afa1580156102d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f69190610f80565b73ffffffffffffffffffffffffffffffffffffffff161461034c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161034390610ff9565b60405180910390fd5b6000808473ffffffffffffffffffffffffffffffffffffffff166040516024016040516020818303038152906040527f3684d100000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516103f6919061108a565b6000604051808303816000865af19150503d8060008114610433576040519150601f19603f3d011682016040523d82523d6000602084013e610438565b606091505b50915091506000808673ffffffffffffffffffffffffffffffffffffffff166040516024016040516020818303038152906040527f0bcca831000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516104e7919061108a565b6000604051808303816000865af19150503d8060008114610524576040519150601f19603f3d011682016040523d82523d6000602084013e610529565b606091505b509150915083801561053c575060008351115b806105515750818015610550575060008151115b5b610590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058790611139565b60405180910390fd5b6000606460025410156105b1576b033b2e3c9fd0803ce8000000905061061f565b61044c60025410156105d0576a52b7d2dcc80cd2e4000000905061061e565b612b5c60025410156105ef576a084595161401484a000000905061061d565b6201b1fc600254101561060e5769d3c21bcecceda1000000905061061c565b69152d02c7e14af680000090505b5b5b5b8573ffffffffffffffffffffffffffffffffffffffff166323b872dd33308a6040518463ffffffff1660e01b815260040161065c93929190611159565b600060405180830381600087803b15801561067657600080fd5b505af115801561068a573d6000803e3d6000fd5b5050505080600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016106ea9190610cce565b602060405180830381865afa158015610707573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061072b91906111bc565b101561076c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076390611235565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016107c9929190611255565b6020604051808303816000875af11580156107e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080c91906112b6565b61084b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108429061132f565b60405180910390fd5b6002600081548092919061085e9061134f565b9190505550505050505050505080806108769061134f565b91505061020b565b5050505050565b61088d6109c9565b6108956108f7565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156108da573d6000803e3d6000fd5b50565b60025481565b6108eb6109c9565b6108f56000610a47565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61094e6109c9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b490611409565b60405180910390fd5b6109c681610a47565b50565b6109d1610b0b565b73ffffffffffffffffffffffffffffffffffffffff166109ef6108f7565b73ffffffffffffffffffffffffffffffffffffffff1614610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90611475565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f840112610b4257610b41610b1d565b5b8235905067ffffffffffffffff811115610b5f57610b5e610b22565b5b602083019150836020820283011115610b7b57610b7a610b27565b5b9250929050565b60008083601f840112610b9857610b97610b1d565b5b8235905067ffffffffffffffff811115610bb557610bb4610b22565b5b602083019150836020820283011115610bd157610bd0610b27565b5b9250929050565b60008060008060408587031215610bf257610bf1610b13565b5b600085013567ffffffffffffffff811115610c1057610c0f610b18565b5b610c1c87828801610b2c565b9450945050602085013567ffffffffffffffff811115610c3f57610c3e610b18565b5b610c4b87828801610b82565b925092505092959194509250565b6000819050919050565b610c6c81610c59565b82525050565b6000602082019050610c876000830184610c63565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610cb882610c8d565b9050919050565b610cc881610cad565b82525050565b6000602082019050610ce36000830184610cbf565b92915050565b6000819050919050565b6000610d0e610d09610d0484610c8d565b610ce9565b610c8d565b9050919050565b6000610d2082610cf3565b9050919050565b6000610d3282610d15565b9050919050565b610d4281610d27565b82525050565b6000602082019050610d5d6000830184610d39565b92915050565b610d6c81610cad565b8114610d7757600080fd5b50565b600081359050610d8981610d63565b92915050565b600060208284031215610da557610da4610b13565b5b6000610db384828501610d7a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610df682610c59565b9150610e0183610c59565b9250828202610e0f81610c59565b91508282048414831517610e2657610e25610dbc565b5b5092915050565b600082825260208201905092915050565b7f4d7573742073656e6420302e30312045544820706572204e4654000000000000600082015250565b6000610e74601a83610e2d565b9150610e7f82610e3e565b602082019050919050565b60006020820190508181036000830152610ea381610e67565b9050919050565b7f4e46542041646472657373657320616e6420746f6b656e2049447320636f756e60008201527f74206d757374206265207468652073616d650000000000000000000000000000602082015250565b6000610f06603283610e2d565b9150610f1182610eaa565b604082019050919050565b60006020820190508181036000830152610f3581610ef9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050610f7a81610d63565b92915050565b600060208284031215610f9657610f95610b13565b5b6000610fa484828501610f6b565b91505092915050565b7f4d757374206f776e20746865204e465400000000000000000000000000000000600082015250565b6000610fe3601083610e2d565b9150610fee82610fad565b602082019050919050565b6000602082019050818103600083015261101281610fd6565b9050919050565b600081519050919050565b600081905092915050565b60005b8381101561104d578082015181840152602081019050611032565b60008484015250505050565b600061106482611019565b61106e8185611024565b935061107e81856020860161102f565b80840191505092915050565b60006110968284611059565b915081905092915050565b7f4e465420636f6e747261637420646f6573206e6f742068617665206d6574616460008201527f6174614d6f64756c65206f7220736f756e645265636f7665727941646472657360208201527f732066756e6374696f6e00000000000000000000000000000000000000000000604082015250565b6000611123604a83610e2d565b915061112e826110a1565b606082019050919050565b6000602082019050818103600083015261115281611116565b9050919050565b600060608201905061116e6000830186610cbf565b61117b6020830185610cbf565b6111886040830184610c63565b949350505050565b61119981610c59565b81146111a457600080fd5b50565b6000815190506111b681611190565b92915050565b6000602082840312156111d2576111d1610b13565b5b60006111e0848285016111a7565b91505092915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b600061121f601683610e2d565b915061122a826111e9565b602082019050919050565b6000602082019050818103600083015261124e81611212565b9050919050565b600060408201905061126a6000830185610cbf565b6112776020830184610c63565b9392505050565b60008115159050919050565b6112938161127e565b811461129e57600080fd5b50565b6000815190506112b08161128a565b92915050565b6000602082840312156112cc576112cb610b13565b5b60006112da848285016112a1565b91505092915050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000611319600f83610e2d565b9150611324826112e3565b602082019050919050565b600060208201905081810360008301526113488161130c565b9050919050565b600061135a82610c59565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361138c5761138b610dbc565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006113f3602683610e2d565b91506113fe82611397565b604082019050919050565b60006020820190508181036000830152611422816113e6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061145f602083610e2d565b915061146a82611429565b602082019050919050565b6000602082019050818103600083015261148e81611452565b905091905056fea26469706673582212200fda1e64b82dc406464d29e05cb61f3af06042a08990f69baafb4837239cdcf864736f6c6343000812003300000000000000000000000053ef3d3a09753e8ba6ee87fe703faae3e9422936
Deployed Bytecode
0x6080604052600436106100705760003560e01c8063715018a61161004e578063715018a6146100d35780638da5cb5b146100ea578063b82cb95a14610115578063f2fde38b1461014057610070565b806303fbcf68146100755780633ccfd60b1461009157806346b260ac146100a8575b600080fd5b61008f600480360381019061008a9190610bd8565b610169565b005b34801561009d57600080fd5b506100a6610885565b005b3480156100b457600080fd5b506100bd6108dd565b6040516100ca9190610c72565b60405180910390f35b3480156100df57600080fd5b506100e86108e3565b005b3480156100f657600080fd5b506100ff6108f7565b60405161010c9190610cce565b60405180910390f35b34801561012157600080fd5b5061012a610920565b6040516101379190610d48565b60405180910390f35b34801561014c57600080fd5b5061016760048036038101906101629190610d8f565b610946565b005b81819050662386f26fc1000061017f9190610deb565b34146101c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101b790610e8a565b60405180910390fd5b818190508484905014610208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101ff90610f1c565b60405180910390fd5b60005b8282905081101561087e57600085858381811061022b5761022a610f3c565b5b90506020020160208101906102409190610d8f565b9050600084848481811061025757610256610f3c565b5b90506020020135905060008290503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b81526004016102b59190610c72565b602060405180830381865afa1580156102d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f69190610f80565b73ffffffffffffffffffffffffffffffffffffffff161461034c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161034390610ff9565b60405180910390fd5b6000808473ffffffffffffffffffffffffffffffffffffffff166040516024016040516020818303038152906040527f3684d100000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516103f6919061108a565b6000604051808303816000865af19150503d8060008114610433576040519150601f19603f3d011682016040523d82523d6000602084013e610438565b606091505b50915091506000808673ffffffffffffffffffffffffffffffffffffffff166040516024016040516020818303038152906040527f0bcca831000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516104e7919061108a565b6000604051808303816000865af19150503d8060008114610524576040519150601f19603f3d011682016040523d82523d6000602084013e610529565b606091505b509150915083801561053c575060008351115b806105515750818015610550575060008151115b5b610590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058790611139565b60405180910390fd5b6000606460025410156105b1576b033b2e3c9fd0803ce8000000905061061f565b61044c60025410156105d0576a52b7d2dcc80cd2e4000000905061061e565b612b5c60025410156105ef576a084595161401484a000000905061061d565b6201b1fc600254101561060e5769d3c21bcecceda1000000905061061c565b69152d02c7e14af680000090505b5b5b5b8573ffffffffffffffffffffffffffffffffffffffff166323b872dd33308a6040518463ffffffff1660e01b815260040161065c93929190611159565b600060405180830381600087803b15801561067657600080fd5b505af115801561068a573d6000803e3d6000fd5b5050505080600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016106ea9190610cce565b602060405180830381865afa158015610707573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061072b91906111bc565b101561076c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076390611235565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016107c9929190611255565b6020604051808303816000875af11580156107e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080c91906112b6565b61084b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108429061132f565b60405180910390fd5b6002600081548092919061085e9061134f565b9190505550505050505050505080806108769061134f565b91505061020b565b5050505050565b61088d6109c9565b6108956108f7565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156108da573d6000803e3d6000fd5b50565b60025481565b6108eb6109c9565b6108f56000610a47565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61094e6109c9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b490611409565b60405180910390fd5b6109c681610a47565b50565b6109d1610b0b565b73ffffffffffffffffffffffffffffffffffffffff166109ef6108f7565b73ffffffffffffffffffffffffffffffffffffffff1614610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90611475565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f840112610b4257610b41610b1d565b5b8235905067ffffffffffffffff811115610b5f57610b5e610b22565b5b602083019150836020820283011115610b7b57610b7a610b27565b5b9250929050565b60008083601f840112610b9857610b97610b1d565b5b8235905067ffffffffffffffff811115610bb557610bb4610b22565b5b602083019150836020820283011115610bd157610bd0610b27565b5b9250929050565b60008060008060408587031215610bf257610bf1610b13565b5b600085013567ffffffffffffffff811115610c1057610c0f610b18565b5b610c1c87828801610b2c565b9450945050602085013567ffffffffffffffff811115610c3f57610c3e610b18565b5b610c4b87828801610b82565b925092505092959194509250565b6000819050919050565b610c6c81610c59565b82525050565b6000602082019050610c876000830184610c63565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610cb882610c8d565b9050919050565b610cc881610cad565b82525050565b6000602082019050610ce36000830184610cbf565b92915050565b6000819050919050565b6000610d0e610d09610d0484610c8d565b610ce9565b610c8d565b9050919050565b6000610d2082610cf3565b9050919050565b6000610d3282610d15565b9050919050565b610d4281610d27565b82525050565b6000602082019050610d5d6000830184610d39565b92915050565b610d6c81610cad565b8114610d7757600080fd5b50565b600081359050610d8981610d63565b92915050565b600060208284031215610da557610da4610b13565b5b6000610db384828501610d7a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610df682610c59565b9150610e0183610c59565b9250828202610e0f81610c59565b91508282048414831517610e2657610e25610dbc565b5b5092915050565b600082825260208201905092915050565b7f4d7573742073656e6420302e30312045544820706572204e4654000000000000600082015250565b6000610e74601a83610e2d565b9150610e7f82610e3e565b602082019050919050565b60006020820190508181036000830152610ea381610e67565b9050919050565b7f4e46542041646472657373657320616e6420746f6b656e2049447320636f756e60008201527f74206d757374206265207468652073616d650000000000000000000000000000602082015250565b6000610f06603283610e2d565b9150610f1182610eaa565b604082019050919050565b60006020820190508181036000830152610f3581610ef9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050610f7a81610d63565b92915050565b600060208284031215610f9657610f95610b13565b5b6000610fa484828501610f6b565b91505092915050565b7f4d757374206f776e20746865204e465400000000000000000000000000000000600082015250565b6000610fe3601083610e2d565b9150610fee82610fad565b602082019050919050565b6000602082019050818103600083015261101281610fd6565b9050919050565b600081519050919050565b600081905092915050565b60005b8381101561104d578082015181840152602081019050611032565b60008484015250505050565b600061106482611019565b61106e8185611024565b935061107e81856020860161102f565b80840191505092915050565b60006110968284611059565b915081905092915050565b7f4e465420636f6e747261637420646f6573206e6f742068617665206d6574616460008201527f6174614d6f64756c65206f7220736f756e645265636f7665727941646472657360208201527f732066756e6374696f6e00000000000000000000000000000000000000000000604082015250565b6000611123604a83610e2d565b915061112e826110a1565b606082019050919050565b6000602082019050818103600083015261115281611116565b9050919050565b600060608201905061116e6000830186610cbf565b61117b6020830185610cbf565b6111886040830184610c63565b949350505050565b61119981610c59565b81146111a457600080fd5b50565b6000815190506111b681611190565b92915050565b6000602082840312156111d2576111d1610b13565b5b60006111e0848285016111a7565b91505092915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b600061121f601683610e2d565b915061122a826111e9565b602082019050919050565b6000602082019050818103600083015261124e81611212565b9050919050565b600060408201905061126a6000830185610cbf565b6112776020830184610c63565b9392505050565b60008115159050919050565b6112938161127e565b811461129e57600080fd5b50565b6000815190506112b08161128a565b92915050565b6000602082840312156112cc576112cb610b13565b5b60006112da848285016112a1565b91505092915050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000611319600f83610e2d565b9150611324826112e3565b602082019050919050565b600060208201905081810360008301526113488161130c565b9050919050565b600061135a82610c59565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361138c5761138b610dbc565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006113f3602683610e2d565b91506113fe82611397565b604082019050919050565b60006020820190508181036000830152611422816113e6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061145f602083610e2d565b915061146a82611429565b602082019050919050565b6000602082019050818103600083015261148e81611452565b905091905056fea26469706673582212200fda1e64b82dc406464d29e05cb61f3af06042a08990f69baafb4837239cdcf864736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000053ef3d3a09753e8ba6ee87fe703faae3e9422936
-----Decoded View---------------
Arg [0] : _clipsToken (address): 0x53ef3d3A09753E8Ba6ee87fe703Faae3e9422936
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000053ef3d3a09753e8ba6ee87fe703faae3e9422936
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
POL | 100.00% | $0.063408 | 200 | $12.68 |
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.