ETH Price: $4,695.17 (+7.12%)

Transaction Decoder

Block:
18645107 at Nov-25-2023 12:22:35 AM +UTC
Transaction Fee:
0.00332989251609238 ETH $15.63
Gas Used:
83,510 Gas / 39.874176938 Gwei

Account State Difference:

  Address   Before After State Difference Code
1.812632219020644789 Eth1.812840994020644789 Eth0.000208775
0xa11b4923...e3254b732
0xB856F5b7...6e17519C6
0.039977097548788992 Eth
Nonce: 2698
0.036647205032696612 Eth
Nonce: 2699
0.00332989251609238

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