ETH Price: $2,574.06 (+1.69%)
Gas: 0.32 Gwei

Transaction Decoder

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 Code
0x734B494f...Fa65E3d2a
0.005849317345854621 Eth
Nonce: 7
0.005191040418466446 Eth
Nonce: 8
0.000658276927388175
0x7F9e2A23...F754F1aB6
(Ethermine)
1,626.097882463496683012 Eth1,626.097952517996683012 Eth0.0000700545

Execution Trace

Nothing.setApprovalForAll( operator=0xc6dCC62EACaeAA3D6e3baa41d7065050358Ab5f7, approved=True )
setApprovalForAll[ERC721 (ln:431)]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: GPL-3.0
// Created by HashLips
// The Nerdy Coder Clones
pragma 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);
}
// internal
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX