Transaction Hash:
Block:
22005318 at Mar-08-2025 11:05:11 PM +UTC
Transaction Fee:
0.00002418121179576 ETH
$0.07
Gas Used:
24,324 Gas / 0.99412974 Gwei
Emitted Events:
258 |
IronPawGang.ApprovalForAll( owner=[Sender] 0x49726fe3f32829661b0a9a9d6702ea9a8a1a2e72, operator=0x1E004978...d54003c71, approved=False )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x49726Fe3...A8A1a2E72 |
0.000991328615819712 Eth
Nonce: 381
|
0.000967147404023952 Eth
Nonce: 382
| 0.00002418121179576 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 17.473029920213378442 Eth | 17.473042082213378442 Eth | 0.000012162 | |
0xB283dBac...2d85fa37a |
Execution Trace
IronPawGang.setApprovalForAll( operator=0x1E0049783F008A0085193E00003D00cd54003c71, approved=False )
setApprovalForAll[IronPawGang (ln:2635)]
setApprovalForAll[IronPawGang (ln:2640)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.4;import './IERC721A.sol';/*** @dev Interface of ERC721 token receiver.*/interface ERC721A__IERC721Receiver {function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);}/*** @title ERC721A** @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)* Non-Fungible Token Standard, including the Metadata extension.* Optimized for lower gas during batch mints.** Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)* starting from `_startTokenId()`.*