Transaction Hash:
Block:
14865911 at May-29-2022 10:19:56 AM +UTC
Transaction Fee:
0.000658276927388175 ETH
$1.69
Gas Used:
46,703 Gas / 14.094960225 Gwei
Emitted Events:
38 |
Nothing.ApprovalForAll( owner=[Sender] 0x734b494f85431e4db5e71c8207f2d3cfa65e3d2a, operator=0xc6dCC62E...0358Ab5f7, approved=True )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x734B494f...Fa65E3d2a |
0.005849317345854621 Eth
Nonce: 7
|
0.005191040418466446 Eth
Nonce: 8
| 0.000658276927388175 | ||
0x7F9e2A23...F754F1aB6 | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 1,626.097882463496683012 Eth | 1,626.097952517996683012 Eth | 0.0000700545 |
Execution Trace
Nothing.setApprovalForAll( operator=0xc6dCC62EACaeAA3D6e3baa41d7065050358Ab5f7, approved=True )
setApprovalForAll[ERC721 (ln:431)]
_msgSender[ERC721 (ln:432)]
_msgSender[ERC721 (ln:433)]
ApprovalForAll[ERC721 (ln:434)]
_msgSender[ERC721 (ln:434)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-3.0// Created by HashLips// The Nerdy Coder Clonespragma solidity ^0.8.0;import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";import "@openzeppelin/contracts/access/Ownable.sol";contract Nothing is ERC721Enumerable, Ownable {using Strings for uint256;string public baseURI;string public baseExtension = ".json";uint256 public cost = 0.00 ether;uint256 public maxSupply = 3210;uint256 public maxMintAmount = 50;bool public paused = false;mapping(address => bool) public whitelisted;constructor(string memory _name,string memory _symbol,string memory _initBaseURI) ERC721(_name, _symbol) {setBaseURI(_initBaseURI);mint(msg.sender, 50);}// internalfunction _baseURI() internal view virtual override returns (string memory) {return baseURI;