Transaction Hash:
Block:
16970951 at Apr-03-2023 08:46:59 PM +UTC
Transaction Fee:
0.001688611302474936 ETH
$4.99
Gas Used:
46,236 Gas / 36.521569826 Gwei
Emitted Events:
155 |
IronPawGang.ApprovalForAll( owner=[Sender] 0xbf9409777a078c557c76d6c185d43b2d5410dd8f, operator=0x1E004978...d54003c71, approved=True )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0xB283dBac...2d85fa37a | |||||
0xBB3AFDe3...3EB0FE248
Miner
| (Fee Recipient: 0xbb3a...248) | 81.367508556600670295 Eth | 81.367554792600670295 Eth | 0.000046236 | |
0xbF940977...d5410DD8F |
0.162599324460583912 Eth
Nonce: 192
|
0.160910713158108976 Eth
Nonce: 193
| 0.001688611302474936 |
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()`.*