Source Code
Latest 25 from a total of 1,842 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Mint Many | 15066696 | 1352 days ago | IN | 0 ETH | 0.00014561 | ||||
| Mint Many | 15056447 | 1353 days ago | IN | 0 ETH | 0.00022297 | ||||
| Mint Many | 15019760 | 1360 days ago | IN | 0 ETH | 0.00158705 | ||||
| Mint Many | 15019760 | 1360 days ago | IN | 0 ETH | 0.00159617 | ||||
| Mint Many | 14996043 | 1365 days ago | IN | 0 ETH | 0.0002886 | ||||
| Mint Many | 14996043 | 1365 days ago | IN | 0 ETH | 0.00026237 | ||||
| Mint Many | 14987768 | 1366 days ago | IN | 0 ETH | 0.0004551 | ||||
| Mint Many | 14987768 | 1366 days ago | IN | 0 ETH | 0.0004551 | ||||
| Mint Many | 14987768 | 1366 days ago | IN | 0 ETH | 0.0004551 | ||||
| Mint Many | 14987768 | 1366 days ago | IN | 0 ETH | 0.00046586 | ||||
| Mint Many | 14987768 | 1366 days ago | IN | 0 ETH | 0.0004551 | ||||
| Mint Many | 14987717 | 1366 days ago | IN | 0 ETH | 0.00073936 | ||||
| Mint Many | 14985272 | 1366 days ago | IN | 0 ETH | 0.00049541 | ||||
| Mint Many | 14982814 | 1367 days ago | IN | 0 ETH | 0.00036621 | ||||
| Mint Many | 14982814 | 1367 days ago | IN | 0 ETH | 0.00036869 | ||||
| Mint Many | 14972383 | 1369 days ago | IN | 0 ETH | 0.00086914 | ||||
| Mint Many | 14972383 | 1369 days ago | IN | 0 ETH | 0.00086914 | ||||
| Mint Many | 14971913 | 1369 days ago | IN | 0 ETH | 0.00096611 | ||||
| Mint Many | 14971913 | 1369 days ago | IN | 0 ETH | 0.00096611 | ||||
| Mint Many | 14971912 | 1369 days ago | IN | 0 ETH | 0.00086028 | ||||
| Mint Many | 14971912 | 1369 days ago | IN | 0 ETH | 0.00086028 | ||||
| Mint Many | 14971912 | 1369 days ago | IN | 0 ETH | 0.00086028 | ||||
| Mint Many | 14971912 | 1369 days ago | IN | 0 ETH | 0.00086028 | ||||
| Mint Many | 14971912 | 1369 days ago | IN | 0 ETH | 0.00086028 | ||||
| Mint Many | 14971912 | 1369 days ago | IN | 0 ETH | 0.00086028 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 14962186 | 1370 days ago | 3.7451 ETH | ||||
| - | 14962160 | 1370 days ago | 0.035 ETH | ||||
| - | 14962158 | 1370 days ago | 0.035 ETH | ||||
| - | 14962152 | 1370 days ago | 0.035 ETH | ||||
| - | 14962152 | 1370 days ago | 0.07 ETH | ||||
| - | 14962151 | 1370 days ago | 0.035 ETH | ||||
| - | 14962148 | 1370 days ago | 0.07 ETH | ||||
| - | 14962145 | 1370 days ago | 0.07 ETH | ||||
| - | 14962140 | 1370 days ago | 0.035 ETH | ||||
| - | 14962139 | 1370 days ago | 0.175 ETH | ||||
| - | 14962133 | 1370 days ago | 0.07 ETH | ||||
| - | 14962131 | 1370 days ago | 0.035 ETH | ||||
| - | 14962124 | 1370 days ago | 0.035 ETH | ||||
| - | 14962100 | 1370 days ago | 0.175 ETH | ||||
| - | 14962099 | 1370 days ago | 0.07 ETH | ||||
| - | 14962072 | 1370 days ago | 0.035 ETH | ||||
| - | 14962066 | 1370 days ago | 0.035 ETH | ||||
| - | 14962063 | 1370 days ago | 0.035 ETH | ||||
| - | 14962055 | 1370 days ago | 0.105 ETH | ||||
| - | 14962051 | 1370 days ago | 0.035 ETH | ||||
| - | 14962049 | 1370 days ago | 0.035 ETH | ||||
| - | 14962049 | 1370 days ago | 0.105 ETH | ||||
| - | 14962048 | 1370 days ago | 0.035 ETH | ||||
| - | 14962046 | 1370 days ago | 0.14 ETH | ||||
| - | 14962045 | 1370 days ago | 0.035 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MintProxy
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 200 runs
Other Settings:
byzantium EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721InteractProxy.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
contract MintProxy is ERC721InteractProxy, IERC721Receiver {
uint256 public price;
uint256 public _originalPrice;
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external pure returns (bytes4) {
data; tokenId; from; operator;
return this.onERC721Received.selector;
}
constructor() {
price = 0.005e18;
_originalPrice = 0.035e18;
setContract(address(0xc7f599640Ae884F4ec4555265C82cd57cac76795));
}
function setTokenPrice(uint256 _price) public onlyOwner {
price = _price;
}
function setOriginalPrice(uint256 _price) public onlyOwner {
_originalPrice = _price;
}
function release() public onlyOwner {
address to = msg.sender;
(bool sent, bytes memory data) = to.call{value: address(this).balance}(
""
);
require(sent, "Failed to call release()");
data;
}
function retrieveToken(uint256 _tokenId) public onlyOwner {
address to = msg.sender;
tokenContract.safeTransferFrom(address(this), to, _tokenId);
}
modifier costs(uint256 _price) {
require(msg.value >= _price);
_;
}
modifier reserve(uint256 _price) {
require(
address(this).balance >= _price,
"Not enough ETH in the reseve."
);
_;
}
function mint() public payable costs(price) reserve(_originalTokenCost()) {
_mintTo(msg.sender);
}
function mintMany(uint256 _amount)
public
payable
costs(price * _amount)
reserve(_originalTokenCost() * _amount)
{
_mintToMany(msg.sender, _amount);
}
function _mintTo(address _to) internal {
_mint();
tokenContract.transferFrom(
address(this),
_to,
tokenContract.totalSupply() - 1
);
}
function _mintToMany(address _to, uint256 _amount) internal {
_mintMany(_amount);
for (uint256 i = 0; i < _amount; i++) {
tokenContract.transferFrom(
address(this),
_to,
tokenContract.totalSupply() - 1 - i
);
}
}
function deposit() public payable {}
// !CHANGE THESE DEPENDANT ON CONTRACT IMPLEMENTATION
function _mint() internal {
tokenContract.mint{value: _originalTokenCost()}();
}
function _mintMany(uint256 _amount) internal {
tokenContract.mintMany{value: (_amount * _originalTokenCost())}(
_amount
);
}
function _originalTokenCost() internal view returns (uint256) {
return _originalPrice;
}
function totalSupply() public view returns (uint256) {
return tokenContract.totalSupply();
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
contract Moonies is ERC721, Ownable {
using Counters for Counters.Counter;
uint256 public constant MAX_TOKENS = 8888;
uint256 public constant TOKEN_COST = 0.035 * 1e18;
string baseURI = "https://metadata.mooniesnft.xyz/";
bool public enabled = false;
Counters.Counter private _tokenIdCounter;
constructor() ERC721("Moonies", "MOON") {}
function _baseURI() internal view override returns (string memory) {
return baseURI;
}
function changeBaseURI(string memory _newBaseURI) public onlyOwner {
baseURI = _newBaseURI;
}
function safeMint(address to) public onlyOwner {
uint256 tokenId = _tokenIdCounter.current();
_tokenIdCounter.increment();
_safeMint(to, tokenId);
}
// The following functions are overrides required by Solidity.
function _burn(uint256 tokenId) internal override(ERC721) {
super._burn(tokenId);
}
function tokenURI(uint256 tokenId)
public
view
override(ERC721)
returns (string memory)
{
return string(abi.encodePacked(super.tokenURI(tokenId), ".json"));
}
// Additional functions
function totalSupply() public view returns (uint256) {
return _tokenIdCounter.current();
}
modifier costs(uint256 _cost) {
require(msg.value >= _cost, "Insufficient funds.");
_;
}
modifier onlyEnabled() {
require(enabled, "Moonies is not enabled.");
_;
}
function mint() public payable costs(TOKEN_COST) onlyEnabled {
require(totalSupply() < MAX_TOKENS, "Minting limit reached.");
address to = msg.sender;
uint256 tokenId = _tokenIdCounter.current();
_tokenIdCounter.increment();
_safeMint(to, tokenId);
}
function mintMany(uint256 _amount)
public
payable
costs(TOKEN_COST * _amount)
onlyEnabled
{
require(totalSupply() + _amount < MAX_TOKENS, "Minting limit reached.");
address to = msg.sender;
for (uint256 i = 0; i < _amount; i++) {
uint256 tokenId = _tokenIdCounter.current();
_tokenIdCounter.increment();
_safeMint(to, tokenId);
}
}
function mintOwner() public onlyOwner {
require(totalSupply() < MAX_TOKENS, "Minting limit reached.");
address to = msg.sender;
uint256 tokenId = _tokenIdCounter.current();
_tokenIdCounter.increment();
_safeMint(to, tokenId);
}
function mintOwnerMany(uint256 _amount) public onlyOwner {
require(
totalSupply() + _amount <= MAX_TOKENS,
"Minting limit reached."
);
address to = msg.sender;
for (uint256 i = 0; i < _amount; i++) {
uint256 tokenId = _tokenIdCounter.current();
_tokenIdCounter.increment();
_safeMint(to, tokenId);
}
}
function release() public onlyOwner {
address to = msg.sender;
(bool sent, bytes memory data) = to.call{value: address(this).balance}(
""
);
require(sent, "Failed to call release()");
data;
}
function setEnabled(bool _enabled) public onlyOwner {
enabled = _enabled;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./Moonies.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract ERC721InteractProxy is IERC721, Ownable {
Moonies public tokenContract;
mapping(bytes4 => bool) internal supportedInterfaces;
constructor() IERC721() {
supportedInterfaces[0x80ac58cd] = true;
}
function setContract(address _address) public onlyOwner {
tokenContract = Moonies(_address);
}
function balanceOf(address owner)
external
view
override
returns (uint256 balance)
{
return tokenContract.balanceOf(owner);
}
function ownerOf(uint256 tokenId)
external
view
override
returns (address owner)
{
return tokenContract.ownerOf(tokenId);
}
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external override {
tokenContract.safeTransferFrom(from, to, tokenId, data);
}
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external override {
tokenContract.safeTransferFrom(from, to, tokenId);
}
function transferFrom(
address from,
address to,
uint256 tokenId
) external override {
tokenContract.transferFrom(from, to, tokenId);
}
function approve(address to, uint256 tokenId) external override {
tokenContract.approve(to, tokenId);
}
function setApprovalForAll(address to, bool approved) external override {
tokenContract.setApprovalForAll(to, approved);
}
function getApproved(uint256 tokenId)
external
view
override
returns (address)
{
return tokenContract.getApproved(tokenId);
}
function isApprovedForAll(address owner, address operator)
external
view
override
returns (bool)
{
return tokenContract.isApprovedForAll(owner, operator);
}
function supportsInterface(bytes4 interfaceId) external view override returns (bool) {
return supportedInterfaces[interfaceId];
}
}// 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/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}// 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;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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 functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
/**
* @dev ERC721 token with storage based token URI management.
*/
abstract contract ERC721URIStorage is ERC721 {
using Strings for uint256;
// Optional mapping for token URIs
mapping(uint256 => string) private _tokenURIs;
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");
string memory _tokenURI = _tokenURIs[tokenId];
string memory base = _baseURI();
// If there is no base URI, return the token URI.
if (bytes(base).length == 0) {
return _tokenURI;
}
// If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
if (bytes(_tokenURI).length > 0) {
return string(abi.encodePacked(base, _tokenURI));
}
return super.tokenURI(tokenId);
}
/**
* @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
_tokenURIs[tokenId] = _tokenURI;
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual override {
super._burn(tokenId);
if (bytes(_tokenURIs[tokenId]).length != 0) {
delete _tokenURIs[tokenId];
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @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.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 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 {
_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);
}
}{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "byzantium",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_originalPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintMany","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"retrieveToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setOriginalPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenContract","outputs":[{"internalType":"contract Moonies","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b506200003862000029640100000000620000d1810204565b640100000000620000d5810204565b7f80ac58cd0000000000000000000000000000000000000000000000000000000060005260026020527fe93570590271d95518ca425fa83dfa75d04081fc79a4d9a58f39c8df65a8e7a1805460ff191660011790556611c37937e08000600355667c585087238000600455620000cb73c7f599640ae884f4ec4555265c82cd57cac7679564010000000062000125810204565b620001fa565b3390565b60008054600160a060020a03838116600160a060020a0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b62000138640100000000620000d1810204565b600160a060020a031662000154640100000000620001eb810204565b600160a060020a031614620001c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b60018054600160a060020a031916600160a060020a0392909216919091179055565b600054600160a060020a031690565b6114a8806200020a6000396000f3fe6080604052600436106101855760003560e060020a900480636a61e5fc116100d5578063a035b1fe1161008e578063d0e30db011610068578063d0e30db014610201578063e8418b86146104ad578063e985e9c5146104cd578063f2fde38b146104ed57600080fd5b8063a035b1fe14610457578063a22cb4651461046d578063b88d4fde1461048d57600080fd5b80636a61e5fc146103af57806370a08231146103cf578063715018a6146103ef57806375f890ab1461040457806386d1a69f146104245780638da5cb5b1461043957600080fd5b806318160ddd11610142578063547f292a1161011c578063547f292a146103395780635542f6801461034f57806355a373d61461036f5780636352211e1461038f57600080fd5b806318160ddd146102d657806323b872dd146102f957806342842e0e1461031957600080fd5b806301ffc9a71461018a578063059513a6146101ee578063081812fc14610203578063095ea7b31461023b5780631249c58b1461025b578063150b7a0214610263575b600080fd5b34801561019657600080fd5b506101d96101a53660046110e7565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191660009081526002602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102016101fc366004611126565b61050d565b005b34801561020f57600080fd5b5061022361021e366004611126565b6105a4565b604051600160a060020a0390911681526020016101e5565b34801561024757600080fd5b50610201610256366004611154565b610632565b6102016106b6565b34801561026f57600080fd5b506102a861027e366004611180565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b6040517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1990911681526020016101e5565b3480156102e257600080fd5b506102eb61072a565b6040519081526020016101e5565b34801561030557600080fd5b5061020161031436600461121f565b6107b6565b34801561032557600080fd5b5061020161033436600461121f565b61083a565b34801561034557600080fd5b506102eb60045481565b34801561035b57600080fd5b5061020161036a366004611126565b610887565b34801561037b57600080fd5b5060015461022390600160a060020a031681565b34801561039b57600080fd5b506102236103aa366004611126565b610901565b3480156103bb57600080fd5b506102016103ca366004611126565b61094c565b3480156103db57600080fd5b506102eb6103ea366004611260565b61097e565b3480156103fb57600080fd5b50610201610a06565b34801561041057600080fd5b5061020161041f366004611260565b610a3f565b34801561043057600080fd5b50610201610a9b565b34801561044557600080fd5b50600054600160a060020a0316610223565b34801561046357600080fd5b506102eb60035481565b34801561047957600080fd5b5061020161048836600461128b565b610b69565b34801561049957600080fd5b506102016104a8366004611180565b610bbc565b3480156104b957600080fd5b506102016104c8366004611126565b610c46565b3480156104d957600080fd5b506101d96104e83660046112c4565b610c78565b3480156104f957600080fd5b50610201610508366004611260565b610d0f565b8060035461051b9190611321565b8034101561052857600080fd5b8161053260045490565b61053c9190611321565b30318111156105955760405160e560020a62461bcd02815260206004820152601d60248201527f4e6f7420656e6f7567682045544820696e20746865207265736576652e00000060448201526064015b60405180910390fd5b61059f3384610dc7565b505050565b6001546040517f081812fc00000000000000000000000000000000000000000000000000000000815260048101839052600091600160a060020a03169063081812fc906024015b602060405180830381865afa158015610608573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062c9190611340565b92915050565b6001546040517f095ea7b3000000000000000000000000000000000000000000000000000000008152600160a060020a038481166004830152602482018490529091169063095ea7b3906044015b600060405180830381600087803b15801561069a57600080fd5b505af11580156106ae573d6000803e3d6000fd5b505050505050565b600354803410156106c657600080fd5b600454303181111561071d5760405160e560020a62461bcd02815260206004820152601d60248201527f4e6f7420656e6f7567682045544820696e20746865207265736576652e000000604482015260640161058c565b61072633610eed565b5050565b600154604080517f18160ddd0000000000000000000000000000000000000000000000000000000081529051600092600160a060020a0316916318160ddd9160048083019260209291908290030181865afa15801561078d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b1919061135d565b905090565b6001546040517f23b872dd000000000000000000000000000000000000000000000000000000008152600160a060020a03909116906323b872dd9061080390869086908690600401611376565b600060405180830381600087803b15801561081d57600080fd5b505af1158015610831573d6000803e3d6000fd5b50505050505050565b6001546040517f42842e0e000000000000000000000000000000000000000000000000000000008152600160a060020a03909116906342842e0e9061080390869086908690600401611376565b600054600160a060020a031633146108b45760405160e560020a62461bcd02815260040161058c9061139a565b6001546040517f42842e0e0000000000000000000000000000000000000000000000000000000081523391600160a060020a0316906342842e0e9061068090309085908790600401611376565b6001546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101839052600091600160a060020a031690636352211e906024016105eb565b600054600160a060020a031633146109795760405160e560020a62461bcd02815260040161058c9061139a565b600355565b6001546040517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a03838116600483015260009216906370a0823190602401602060405180830381865afa1580156109e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062c919061135d565b600054600160a060020a03163314610a335760405160e560020a62461bcd02815260040161058c9061139a565b610a3d6000610fe9565b565b600054600160a060020a03163314610a6c5760405160e560020a62461bcd02815260040161058c9061139a565b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600054600160a060020a03163314610ac85760405160e560020a62461bcd02815260040161058c9061139a565b6040513390600090819083903031908381818185875af1925050503d8060008114610b0f576040519150601f19603f3d011682016040523d82523d6000602084013e610b14565b606091505b50915091508161059f5760405160e560020a62461bcd02815260206004820152601860248201527f4661696c656420746f2063616c6c2072656c6561736528290000000000000000604482015260640161058c565b6001546040517fa22cb465000000000000000000000000000000000000000000000000000000008152600160a060020a03848116600483015283151560248301529091169063a22cb46590604401610680565b6001546040517fb88d4fde000000000000000000000000000000000000000000000000000000008152600160a060020a039091169063b88d4fde90610c0d90889088908890889088906004016113cf565b600060405180830381600087803b158015610c2757600080fd5b505af1158015610c3b573d6000803e3d6000fd5b505050505050505050565b600054600160a060020a03163314610c735760405160e560020a62461bcd02815260040161058c9061139a565b600455565b6001546040517fe985e9c5000000000000000000000000000000000000000000000000000000008152600160a060020a0384811660048301528381166024830152600092169063e985e9c590604401602060405180830381865afa158015610ce4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d089190611423565b9392505050565b600054600160a060020a03163314610d3c5760405160e560020a62461bcd02815260040161058c9061139a565b600160a060020a038116610dbb5760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161058c565b610dc481610fe9565b50565b610dd081611046565b60005b8181101561059f5760018054604080517f18160ddd0000000000000000000000000000000000000000000000000000000081529051600160a060020a03909216926323b872dd92309288928792909187916318160ddd916004808201926020929091908290030181865afa158015610e4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e73919061135d565b610e7d9190611440565b610e879190611440565b6040518463ffffffff1660e060020a028152600401610ea893929190611376565b600060405180830381600087803b158015610ec257600080fd5b505af1158015610ed6573d6000803e3d6000fd5b505050508080610ee590611457565b915050610dd3565b610ef561109f565b60018054604080517f18160ddd0000000000000000000000000000000000000000000000000000000081529051600160a060020a03909216926323b872dd92309286929186916318160ddd9160048083019260209291908290030181865afa158015610f65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f89919061135d565b610f939190611440565b6040518463ffffffff1660e060020a028152600401610fb493929190611376565b600060405180830381600087803b158015610fce57600080fd5b505af1158015610fe2573d6000803e3d6000fd5b5050505050565b60008054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600154600160a060020a031663059513a661106060045490565b61106a9084611321565b60405160e060020a63ffffffff8416028152600481018590526024016000604051808303818588803b15801561069a57600080fd5b600154600160a060020a0316631249c58b6110b960045490565b6040518263ffffffff1660e060020a0281526004016000604051808303818588803b158015610fce57600080fd5b6000602082840312156110f957600080fd5b81357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1981168114610d0857600080fd5b60006020828403121561113857600080fd5b5035919050565b600160a060020a0381168114610dc457600080fd5b6000806040838503121561116757600080fd5b82356111728161113f565b946020939093013593505050565b60008060008060006080868803121561119857600080fd5b85356111a38161113f565b945060208601356111b38161113f565b935060408601359250606086013567ffffffffffffffff808211156111d757600080fd5b818801915088601f8301126111eb57600080fd5b8135818111156111fa57600080fd5b89602082850101111561120c57600080fd5b9699959850939650602001949392505050565b60008060006060848603121561123457600080fd5b833561123f8161113f565b9250602084013561124f8161113f565b929592945050506040919091013590565b60006020828403121561127257600080fd5b8135610d088161113f565b8015158114610dc457600080fd5b6000806040838503121561129e57600080fd5b82356112a98161113f565b915060208301356112b98161127d565b809150509250929050565b600080604083850312156112d757600080fd5b82356112e28161113f565b915060208301356112b98161113f565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600081600019048311821515161561133b5761133b6112f2565b500290565b60006020828403121561135257600080fd5b8151610d088161113f565b60006020828403121561136f57600080fd5b5051919050565b600160a060020a039384168152919092166020820152604081019190915260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000600160a060020a03808816835280871660208401525084604083015260806060830152826080830152828460a0840137600060a0848401015260a0601f19601f85011683010190509695505050505050565b60006020828403121561143557600080fd5b8151610d088161127d565b600082821015611452576114526112f2565b500390565b600060001982141561146b5761146b6112f2565b506001019056fea2646970667358221220b920a9bbb7f8c928983076e376355c20cc7188559fe912c27b733245feaad47564736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106101855760003560e060020a900480636a61e5fc116100d5578063a035b1fe1161008e578063d0e30db011610068578063d0e30db014610201578063e8418b86146104ad578063e985e9c5146104cd578063f2fde38b146104ed57600080fd5b8063a035b1fe14610457578063a22cb4651461046d578063b88d4fde1461048d57600080fd5b80636a61e5fc146103af57806370a08231146103cf578063715018a6146103ef57806375f890ab1461040457806386d1a69f146104245780638da5cb5b1461043957600080fd5b806318160ddd11610142578063547f292a1161011c578063547f292a146103395780635542f6801461034f57806355a373d61461036f5780636352211e1461038f57600080fd5b806318160ddd146102d657806323b872dd146102f957806342842e0e1461031957600080fd5b806301ffc9a71461018a578063059513a6146101ee578063081812fc14610203578063095ea7b31461023b5780631249c58b1461025b578063150b7a0214610263575b600080fd5b34801561019657600080fd5b506101d96101a53660046110e7565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191660009081526002602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102016101fc366004611126565b61050d565b005b34801561020f57600080fd5b5061022361021e366004611126565b6105a4565b604051600160a060020a0390911681526020016101e5565b34801561024757600080fd5b50610201610256366004611154565b610632565b6102016106b6565b34801561026f57600080fd5b506102a861027e366004611180565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b6040517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1990911681526020016101e5565b3480156102e257600080fd5b506102eb61072a565b6040519081526020016101e5565b34801561030557600080fd5b5061020161031436600461121f565b6107b6565b34801561032557600080fd5b5061020161033436600461121f565b61083a565b34801561034557600080fd5b506102eb60045481565b34801561035b57600080fd5b5061020161036a366004611126565b610887565b34801561037b57600080fd5b5060015461022390600160a060020a031681565b34801561039b57600080fd5b506102236103aa366004611126565b610901565b3480156103bb57600080fd5b506102016103ca366004611126565b61094c565b3480156103db57600080fd5b506102eb6103ea366004611260565b61097e565b3480156103fb57600080fd5b50610201610a06565b34801561041057600080fd5b5061020161041f366004611260565b610a3f565b34801561043057600080fd5b50610201610a9b565b34801561044557600080fd5b50600054600160a060020a0316610223565b34801561046357600080fd5b506102eb60035481565b34801561047957600080fd5b5061020161048836600461128b565b610b69565b34801561049957600080fd5b506102016104a8366004611180565b610bbc565b3480156104b957600080fd5b506102016104c8366004611126565b610c46565b3480156104d957600080fd5b506101d96104e83660046112c4565b610c78565b3480156104f957600080fd5b50610201610508366004611260565b610d0f565b8060035461051b9190611321565b8034101561052857600080fd5b8161053260045490565b61053c9190611321565b30318111156105955760405160e560020a62461bcd02815260206004820152601d60248201527f4e6f7420656e6f7567682045544820696e20746865207265736576652e00000060448201526064015b60405180910390fd5b61059f3384610dc7565b505050565b6001546040517f081812fc00000000000000000000000000000000000000000000000000000000815260048101839052600091600160a060020a03169063081812fc906024015b602060405180830381865afa158015610608573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062c9190611340565b92915050565b6001546040517f095ea7b3000000000000000000000000000000000000000000000000000000008152600160a060020a038481166004830152602482018490529091169063095ea7b3906044015b600060405180830381600087803b15801561069a57600080fd5b505af11580156106ae573d6000803e3d6000fd5b505050505050565b600354803410156106c657600080fd5b600454303181111561071d5760405160e560020a62461bcd02815260206004820152601d60248201527f4e6f7420656e6f7567682045544820696e20746865207265736576652e000000604482015260640161058c565b61072633610eed565b5050565b600154604080517f18160ddd0000000000000000000000000000000000000000000000000000000081529051600092600160a060020a0316916318160ddd9160048083019260209291908290030181865afa15801561078d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b1919061135d565b905090565b6001546040517f23b872dd000000000000000000000000000000000000000000000000000000008152600160a060020a03909116906323b872dd9061080390869086908690600401611376565b600060405180830381600087803b15801561081d57600080fd5b505af1158015610831573d6000803e3d6000fd5b50505050505050565b6001546040517f42842e0e000000000000000000000000000000000000000000000000000000008152600160a060020a03909116906342842e0e9061080390869086908690600401611376565b600054600160a060020a031633146108b45760405160e560020a62461bcd02815260040161058c9061139a565b6001546040517f42842e0e0000000000000000000000000000000000000000000000000000000081523391600160a060020a0316906342842e0e9061068090309085908790600401611376565b6001546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101839052600091600160a060020a031690636352211e906024016105eb565b600054600160a060020a031633146109795760405160e560020a62461bcd02815260040161058c9061139a565b600355565b6001546040517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a03838116600483015260009216906370a0823190602401602060405180830381865afa1580156109e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062c919061135d565b600054600160a060020a03163314610a335760405160e560020a62461bcd02815260040161058c9061139a565b610a3d6000610fe9565b565b600054600160a060020a03163314610a6c5760405160e560020a62461bcd02815260040161058c9061139a565b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600054600160a060020a03163314610ac85760405160e560020a62461bcd02815260040161058c9061139a565b6040513390600090819083903031908381818185875af1925050503d8060008114610b0f576040519150601f19603f3d011682016040523d82523d6000602084013e610b14565b606091505b50915091508161059f5760405160e560020a62461bcd02815260206004820152601860248201527f4661696c656420746f2063616c6c2072656c6561736528290000000000000000604482015260640161058c565b6001546040517fa22cb465000000000000000000000000000000000000000000000000000000008152600160a060020a03848116600483015283151560248301529091169063a22cb46590604401610680565b6001546040517fb88d4fde000000000000000000000000000000000000000000000000000000008152600160a060020a039091169063b88d4fde90610c0d90889088908890889088906004016113cf565b600060405180830381600087803b158015610c2757600080fd5b505af1158015610c3b573d6000803e3d6000fd5b505050505050505050565b600054600160a060020a03163314610c735760405160e560020a62461bcd02815260040161058c9061139a565b600455565b6001546040517fe985e9c5000000000000000000000000000000000000000000000000000000008152600160a060020a0384811660048301528381166024830152600092169063e985e9c590604401602060405180830381865afa158015610ce4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d089190611423565b9392505050565b600054600160a060020a03163314610d3c5760405160e560020a62461bcd02815260040161058c9061139a565b600160a060020a038116610dbb5760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161058c565b610dc481610fe9565b50565b610dd081611046565b60005b8181101561059f5760018054604080517f18160ddd0000000000000000000000000000000000000000000000000000000081529051600160a060020a03909216926323b872dd92309288928792909187916318160ddd916004808201926020929091908290030181865afa158015610e4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e73919061135d565b610e7d9190611440565b610e879190611440565b6040518463ffffffff1660e060020a028152600401610ea893929190611376565b600060405180830381600087803b158015610ec257600080fd5b505af1158015610ed6573d6000803e3d6000fd5b505050508080610ee590611457565b915050610dd3565b610ef561109f565b60018054604080517f18160ddd0000000000000000000000000000000000000000000000000000000081529051600160a060020a03909216926323b872dd92309286929186916318160ddd9160048083019260209291908290030181865afa158015610f65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f89919061135d565b610f939190611440565b6040518463ffffffff1660e060020a028152600401610fb493929190611376565b600060405180830381600087803b158015610fce57600080fd5b505af1158015610fe2573d6000803e3d6000fd5b5050505050565b60008054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600154600160a060020a031663059513a661106060045490565b61106a9084611321565b60405160e060020a63ffffffff8416028152600481018590526024016000604051808303818588803b15801561069a57600080fd5b600154600160a060020a0316631249c58b6110b960045490565b6040518263ffffffff1660e060020a0281526004016000604051808303818588803b158015610fce57600080fd5b6000602082840312156110f957600080fd5b81357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1981168114610d0857600080fd5b60006020828403121561113857600080fd5b5035919050565b600160a060020a0381168114610dc457600080fd5b6000806040838503121561116757600080fd5b82356111728161113f565b946020939093013593505050565b60008060008060006080868803121561119857600080fd5b85356111a38161113f565b945060208601356111b38161113f565b935060408601359250606086013567ffffffffffffffff808211156111d757600080fd5b818801915088601f8301126111eb57600080fd5b8135818111156111fa57600080fd5b89602082850101111561120c57600080fd5b9699959850939650602001949392505050565b60008060006060848603121561123457600080fd5b833561123f8161113f565b9250602084013561124f8161113f565b929592945050506040919091013590565b60006020828403121561127257600080fd5b8135610d088161113f565b8015158114610dc457600080fd5b6000806040838503121561129e57600080fd5b82356112a98161113f565b915060208301356112b98161127d565b809150509250929050565b600080604083850312156112d757600080fd5b82356112e28161113f565b915060208301356112b98161113f565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600081600019048311821515161561133b5761133b6112f2565b500290565b60006020828403121561135257600080fd5b8151610d088161113f565b60006020828403121561136f57600080fd5b5051919050565b600160a060020a039384168152919092166020820152604081019190915260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000600160a060020a03808816835280871660208401525084604083015260806060830152826080830152828460a0840137600060a0848401015260a0601f19601f85011683010190509695505050505050565b60006020828403121561143557600080fd5b8151610d088161127d565b600082821015611452576114526112f2565b500390565b600060001982141561146b5761146b6112f2565b506001019056fea2646970667358221220b920a9bbb7f8c928983076e376355c20cc7188559fe912c27b733245feaad47564736f6c634300080a0033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.