Transaction Hash:
Block:
22116083 at Mar-24-2025 10:11:35 AM +UTC
Transaction Fee:
0.000014004126675506 ETH
$0.04
Gas Used:
26,498 Gas / 0.528497497 Gwei
Emitted Events:
297 |
PixelsFarmland.ApprovalForAll( owner=[Sender] 0x1840b2db2f59047f012f718633e8d4e87e9ab26b, operator=0xA6C7FEEB...567767F55, approved=False )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1840b2dB...87e9Ab26B |
0.001930113855218419 Eth
Nonce: 8
|
0.001916109728542913 Eth
Nonce: 9
| 0.000014004126675506 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 19.003929663000002214 Eth | 19.003930580586472178 Eth | 0.000000917586469964 |
Execution Trace
PixelsFarmland.setApprovalForAll( operator=0xA6C7FEEB5c1de84b6eC66c87d209251567767F55, approved=False )
setApprovalForAll[ERC721A (ln:365)]
_msgSender[ERC721A (ln:366)]
_msgSender[ERC721A (ln:367)]
ApprovalForAll[ERC721A (ln:368)]
_msgSender[ERC721A (ln:368)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.9;import "@openzeppelin/contracts/access/Ownable.sol";import "@openzeppelin/contracts/finance/PaymentSplitter.sol";import '@openzeppelin/contracts/security/Pausable.sol';import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";import "./external/ERC721A.sol";// @author rollauver.ethcontract PixelsFarmland is ERC721A, Ownable, Pausable, PaymentSplitter {string public _baseTokenURI;bytes32 public _merkleRoot;uint256 public _price;uint256 public _presalePrice;uint256 public _maxSupply;uint256 public _maxPerAddress;uint256 public _presaleMaxPerAddress;uint256 public _publicSaleTime;uint256 public _preSaleTime;uint256 public _maxTxPerAddress;mapping(address => uint256) private _purchases;event EarlyPurchase(address indexed addr, uint256 indexed atPrice, uint256 indexed count);event Purchase(address indexed addr, uint256 indexed atPrice, uint256 indexed count);constructor(string memory name,string memory symbol,string memory baseTokenURI, // baseTokenURI - 0