ETH Price: $3,574.02 (+0.49%)

Transaction Decoder

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 Code
0x751772AD...A5ed867a4
0.031534586425336084 Eth
Nonce: 177
0.030629076169031548 Eth
Nonce: 178
0.000905510256304536
(beaverbuild)
15.461831815432207254 Eth15.461890893120566454 Eth0.0000590776883592
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