ETH Price: $2,768.87 (-3.38%)

Transaction Decoder

Block:
21447950 at Dec-21-2024 02:36:59 AM +UTC
Transaction Fee:
0.000388518396213597 ETH $1.08
Gas Used:
46,077 Gas / 8.431937761 Gwei

Emitted Events:

278 FourCZ.ApprovalForAll( owner=[Sender] 0xb13dd5395800420f20675e14b775b16b08ff0a15, operator=0x1E004978...d54003c71, approved=True )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
10.390091693969132264 Eth10.390130074820160572 Eth0.000038380851028308
0xa11b4923...e3254b732
0xB13DD539...b08ff0a15
0.017228519475703832 Eth
Nonce: 442
0.016840001079490235 Eth
Nonce: 443
0.000388518396213597

Execution Trace

FourCZ.setApprovalForAll( operator=0x1E0049783F008A0085193E00003D00cd54003c71, approved=True )
setApprovalForAll[FourCZ (ln:511)]
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
pragma solidity 0.8.20;
/**
* @dev Interface of ERC721A.
*/
interface IERC721A {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* The caller cannot approve to their own address.
*/
error ApproveToCaller();
/**
* Cannot query the balance for the zero address.
*/
error BalanceQueryForZeroAddress();
/**
* Cannot mint to the zero address.
*/
error MintToZeroAddress();
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX