Transaction Hash:
Block:
18680601 at Nov-29-2023 11:39:11 PM +UTC
Transaction Fee:
0.004182229310613012 ETH
$17.96
Gas Used:
114,858 Gas / 36.412172514 Gwei
Emitted Events:
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x77777A6C...0F660eC94
Miner
| (MEV Builder: 0x777...C94) | 3.014950723733762869 Eth | 3.014962209533762869 Eth | 0.0000114858 | |
0xa11b4923...e3254b732 | |||||
0xEA8e5926...1dEdf6b21 |
0.030076408612912149 Eth
Nonce: 224
|
0.025894179302299137 Eth
Nonce: 225
| 0.004182229310613012 |
Execution Trace
FourCZ.freeMint( )
freeMint[FourCZ (ln:266)]
_msgSenderERC721A[FourCZ (ln:267)]
totalSupply[FourCZ (ln:269)]
_startTokenId[FourCZ (ln:348)]
_numberMinted[FourCZ (ln:270)]
_mint[FourCZ (ln:271)]
_addressToUint256[FourCZ (ln:578)]
MintToZeroAddress[FourCZ (ln:578)]
MintZeroQuantity[FourCZ (ln:579)]
_addressToUint256[FourCZ (ln:596)]
_boolToUint256[FourCZ (ln:598)]
Transfer[FourCZ (ln:602)]
_afterTokenTransfers[FourCZ (ln:606)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma 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();