😛

The Ten Thousand

As the NFT art market has been heating up, many people have started to own NFTs. We ourselves have also started to collect, create and sell many kinds of NFTs, however, we’ve been confronting the question, “What is NFT?”, along the way. This question eventually has led us to the creation of “The Ten Thousand”. The Ten Thousand seeks out the question of what NFT really is. Is it NFT if the image is displayed nicely on major platforms? Or is it NFT if the external tool shows it as ERC721?

image

Anyone can run a mint on the contract of The Ten Thousand (TTT), and you can see the number of holders and other quantities increase on Etherscan as they are minted.

NFT Overview

Network: Ethereum Mainnet
Standard: ERC721
Contract Address: 0xBf48BAaa34B79d3672435DB929015D1893b64E09
Name: The Ten Thousand
Symbol: TTT
Max Total Supply: 10,000
Contract Owner: Owner of the-ten-thousand.eth

Contract

// SPDX-License-Identifier: MIT

pragma solidity 0.8.6;

contract TheTenThousand {

    string public name = "The Ten Thousand";
    string public symbol = "TTT";
    uint256 public totalSupply;

    event Transfer(address indexed _from, address indexed _to, uint256 indexed _tokenId);

    function tokenURI(uint256 tokenId) public pure returns (string memory) {
        return unicode"💩";
    }

    function mint(uint256 quantity) public {
        require(totalSupply + quantity <= 10000);
        for (uint256 i; i < quantity; i++) {
            emit Transfer(address(0), msg.sender, totalSupply++);
        }
    }

    function owner() public view returns(address) {
        return IERC721(0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85).ownerOf(48470876519710777708258103201204544426167522678893968848486433251871114915301);
    }

    function supportsInterface(bytes4 interfaceId) public pure returns (bool) {
        return interfaceId == bytes4(0x01ffc9a7) || interfaceId == bytes4(0x80ac58cd) || interfaceId == bytes4(0x5b5e139f) || interfaceId == bytes4(0x780e9d63);
    }
}

interface IERC721 {
    function ownerOf(uint256 tokenId) external view returns (address owner);
}

Artists

Toshi / wildmouse

Links

⬅️

© 2021 by TART K.K.