ETH Price: $2,639.60 (+3.29%)

Transaction Decoder

Block:
18645124 at Nov-25-2023 12:25:59 AM +UTC
Transaction Fee:
0.010505049227260104 ETH $27.73
Gas Used:
83,446 Gas / 125.890386924 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
9.439374056482129026 Eth9.447727001082129026 Eth0.0083529446
0x8b181379...e767616a9
0.361608967880698232 Eth
Nonce: 7
0.351103918653438128 Eth
Nonce: 8
0.010505049227260104
0xa11b4923...e3254b732

Execution Trace

FourCZ.CALL( )
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