Transaction Hash:
Block:
18675344 at Nov-29-2023 06:00:47 AM +UTC
Transaction Fee:
0.003435020991203994 ETH
$8.66
Gas Used:
114,858 Gas / 29.906675993 Gwei
Emitted Events:
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1CeDC0f3...1a1629074
Miner
| (Fee Recipient: 0x1Ce...074) | 810.752973274456133867 Eth | 810.752984760256133867 Eth | 0.0000114858 | |
0xa11b4923...e3254b732 | |||||
0xa4E43cBe...fD06E0e9d |
0.006916004690715418 Eth
Nonce: 24
|
0.003480983699511424 Eth
Nonce: 25
| 0.003435020991203994 |
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();