Skip to content

Latest commit

 

History

History

0xa82f3a61f002f83eba7d184c50bb2a8b359ca1ce

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Contract outline - contract.sol:

contract CryptoPhunks is Ownable, ERC721Enumerable, ReentrancyGuard
abstract contract Ownable is Context
abstract contract ReentrancyGuard
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable
library Counters
library Strings
abstract contract Context
interface IERC721 is IERC165
interface IERC721Receiver
interface IERC721Metadata is IERC721
library Address
abstract contract ERC165 is IERC165
interface IERC165
interface IERC721Enumerable is IERC721

Created on Ethereum Mainnet:

  • Block 12630376 @ 2021-06-14 04:18:53 UTC (1623644333)
  • Tx Id 0x48db643b9ee37de131e23456ecf35c3a270cba12b4e952f02fe7e5af0bb2a0cc
  • By 0xdd01e9be0f8ac1be72f57a29e2e960777ef2d152

phunks v1 | philips - Contract ABI @ 0xa82f3a61f002f83eba7d184c50bb2a8b359ca1ce

Constructor

  • constructor()

2 Payable Function(s)

  • function mint(uint256 _numToMint) payable
  • function withdrawMoney() payable

14 Transact Functions(s)

  • function approve(address to, uint256 tokenId)
  • function endFreeSale()
  • function endSale()
  • function ownerMint(uint256 _numToMint)
  • function renounceOwnership()
  • function safeTransferFrom(address from, address to, uint256 tokenId)
  • function safeTransferFrom(address from, address to, uint256 tokenId, bytes _data)
  • function setApprovalForAll(address operator, bool approved)
  • function setBaseURI(string baseURI)
  • function setContractURI(string _contractURI)
  • function startFreeSale()
  • function startSale()
  • function transferFrom(address from, address to, uint256 tokenId)
  • function transferOwnership(address newOwner)

24 Query Functions(s)

  • function MAX_MINTABLE_AT_ONCE() ⇒ (uint256 _) readonly
  • function balanceOf(address owner) ⇒ (uint256 _) readonly
  • function contractURI() ⇒ (string _) readonly
  • function freeSaleHasHappened() ⇒ (bool _) readonly
  • function getApproved(uint256 tokenId) ⇒ (address _) readonly
  • function getCostForMintingPhunks(uint256 _numToMint) ⇒ (uint256 _) readonly
  • function getPhunksBelongingToOwner(address _owner) ⇒ (uint256[] _) readonly
  • function imageHash() ⇒ (string _) readonly
  • function isApprovedForAll(address owner, address operator) ⇒ (bool _) readonly
  • function isFreeSaleOn() ⇒ (bool _) readonly
  • function isSaleOn() ⇒ (bool _) readonly
  • function maxNumFreeDevPhunks() ⇒ (uint256 _) readonly
  • function maxNumFreePhunks() ⇒ (uint256 _) readonly
  • function name() ⇒ (string _) readonly
  • function numTotalPhunks() ⇒ (uint256 _) readonly
  • function owner() ⇒ (address _) readonly
  • function ownerOf(uint256 tokenId) ⇒ (address _) readonly
  • function saleHasBeenStarted() ⇒ (bool _) readonly
  • function supportsInterface(bytes4 interfaceId) ⇒ (bool _) readonly
  • function symbol() ⇒ (string _) readonly
  • function tokenByIndex(uint256 index) ⇒ (uint256 _) readonly
  • function tokenOfOwnerByIndex(address owner, uint256 index) ⇒ (uint256 _) readonly
  • function tokenURI(uint256 _tokenId) ⇒ (string _) readonly
  • function totalSupply() ⇒ (uint256 _) readonly