Transaction Hash:
Block:
18645105 at Nov-25-2023 12:22:11 AM +UTC
Transaction Fee:
0.00275075340020978 ETH
$7.67
Gas Used:
83,510 Gas / 32.939209678 Gwei
Emitted Events:
176 |
FourCZ.Transfer( from=0x00000000...000000000, to=[Sender] 0xecf406c8578185ba66357c799ff906827db3a119, tokenId=40 )
|
177 |
FourCZ.Transfer( from=0x00000000...000000000, to=[Sender] 0xecf406c8578185ba66357c799ff906827db3a119, tokenId=41 )
|
178 |
FourCZ.Transfer( from=0x00000000...000000000, to=[Sender] 0xecf406c8578185ba66357c799ff906827db3a119, tokenId=42 )
|
179 |
FourCZ.Transfer( from=0x00000000...000000000, to=[Sender] 0xecf406c8578185ba66357c799ff906827db3a119, tokenId=43 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 1.739072285496060355 Eth | 1.739356219496060355 Eth | 0.000283934 | ||
0xa11b4923...e3254b732 | |||||
0xeCF406c8...27dB3A119 |
0.128054348214350719 Eth
Nonce: 1122
|
0.125303594814140939 Eth
Nonce: 1123
| 0.00275075340020978 |
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();