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

Transaction Decoder

Block:
18645882 at Nov-25-2023 02:58:23 AM +UTC
Transaction Fee:
0.001987646613337938 ETH $5.50
Gas Used:
95,258 Gas / 20.865928461 Gwei

Account State Difference:

  Address   Before After State Difference Code
1.891766679558714659 Eth1.891776205358714659 Eth0.0000095258
0xa11b4923...e3254b732
0xB1AFA39F...D774fE637
0.030466154900898415 Eth
Nonce: 183
0.028478508287560477 Eth
Nonce: 184
0.001987646613337938

Execution Trace

FourCZ.freeMint( )
freeMint[FourCZ (ln:266)]
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