Transaction Hash:
Block:
21309429 at Dec-01-2024 06:23:23 PM +UTC
Transaction Fee:
0.000905510256304536 ETH
$3.24
Gas Used:
46,236 Gas / 19.584528426 Gwei
Emitted Events:
164 |
IronPawGang.ApprovalForAll( owner=[Sender] 0x751772ad2ae0c0fea2bce792c605843a5ed867a4, operator=0x1E004978...d54003c71, approved=True )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x751772AD...A5ed867a4 |
0.031534586425336084 Eth
Nonce: 177
|
0.030629076169031548 Eth
Nonce: 178
| 0.000905510256304536 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 15.461831815432207254 Eth | 15.461890893120566454 Eth | 0.0000590776883592 | |
0xB283dBac...2d85fa37a |
Execution Trace
IronPawGang.setApprovalForAll( operator=0x1E0049783F008A0085193E00003D00cd54003c71, approved=True )
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()`.*