Transaction Hash:
Block:
18645116 at Nov-25-2023 12:24:23 AM +UTC
Transaction Fee:
0.002596773686667052 ETH
$9.25
Gas Used:
83,498 Gas / 31.099830974 Gwei
Emitted Events:
150 |
FourCZ.Transfer( from=0x00000000...000000000, to=[Sender] 0x755c8d16d5298395922d791db8eaef7294de0cd4, tokenId=140 )
|
151 |
FourCZ.Transfer( from=0x00000000...000000000, to=[Sender] 0x755c8d16d5298395922d791db8eaef7294de0cd4, tokenId=141 )
|
152 |
FourCZ.Transfer( from=0x00000000...000000000, to=[Sender] 0x755c8d16d5298395922d791db8eaef7294de0cd4, tokenId=142 )
|
153 |
FourCZ.Transfer( from=0x00000000...000000000, to=[Sender] 0x755c8d16d5298395922d791db8eaef7294de0cd4, tokenId=143 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x44C50ca7...3C1A6d5e2
Miner
| 0.061461160863755359 Eth | 0.061469510663755359 Eth | 0.0000083498 | ||
0x755C8d16...294de0Cd4 |
0.056417541502755363 Eth
Nonce: 3590
|
0.053820767816088311 Eth
Nonce: 3591
| 0.002596773686667052 | ||
0xa11b4923...e3254b732 |
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();