ETH Price: $2,519.66 (-0.36%)

Transaction Decoder

Block:
18674241 at Nov-29-2023 02:18:23 AM +UTC
Transaction Fee:
0.002396945984520815 ETH $6.04
Gas Used:
75,419 Gas / 31.781725885 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x91EdC55D...A8f60D476
0.077322883814464764 Eth
Nonce: 106
0.074125937829943949 Eth
Nonce: 107
0.003196945984520815
(beaverbuild)
9.682453238989151398 Eth9.682460780889151398 Eth0.0000075419
0xa11b4923...e3254b732 0.0024 Eth0.0032 Eth0.0008

Execution Trace

ETH 0.0008 FourCZ.mint( amount=1 )
mint[FourCZ (ln:260)]
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