ETH Price: $4,685.40 (+6.90%)

Transaction Decoder

Block:
18645105 at Nov-25-2023 12:22:11 AM +UTC
Transaction Fee:
0.00275910440020978 ETH $12.93
Gas Used:
83,510 Gas / 33.039209678 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x0108f918...29E2bbc9f
0.13497230598028296 Eth
Nonce: 1490
0.13221320158007318 Eth
Nonce: 1491
0.00275910440020978
1.74466469474204007 Eth1.74495697974204007 Eth0.000292285
0xa11b4923...e3254b732

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