ETH Price: $3,707.12 (+2.12%)

Transaction Decoder

Block:
22418189 at May-05-2025 02:39:35 PM +UTC
Transaction Fee:
0.000071008703400144 ETH $0.26
Gas Used:
46,236 Gas / 1.535788204 Gwei

Emitted Events:

261 IronPawGang.ApprovalForAll( owner=[Sender] 0x664e3a3a6a6fa524d06f4d612fe8440b923574bd, operator=0x1E004978...d54003c71, approved=True )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
150.420915348941937387 Eth150.420944606916149079 Eth0.000029257974211692
0x664E3a3A...b923574Bd
0.983104920755163301 Eth
Nonce: 4118
0.983033912051763157 Eth
Nonce: 4119
0.000071008703400144
0xB283dBac...2d85fa37a

Execution Trace

IronPawGang.setApprovalForAll( operator=0x1E0049783F008A0085193E00003D00cd54003c71, approved=True )
setApprovalForAll[IronPawGang (ln:2635)]
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: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma 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()`.
*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX