Transaction Hash:
Block:
18645115 at Nov-25-2023 12:24:11 AM +UTC
Transaction Fee:
0.00269653749506001 ETH
$6.94
Gas Used:
83,510 Gas / 32.289995151 Gwei
Emitted Events:
166 |
FourCZ.Transfer( from=0x00000000...000000000, to=[Sender] 0x94c1e3a7d8a2cbb0ab306d05148f0f24f1e1c2bb, tokenId=128 )
|
167 |
FourCZ.Transfer( from=0x00000000...000000000, to=[Sender] 0x94c1e3a7d8a2cbb0ab306d05148f0f24f1e1c2bb, tokenId=129 )
|
168 |
FourCZ.Transfer( from=0x00000000...000000000, to=[Sender] 0x94c1e3a7d8a2cbb0ab306d05148f0f24f1e1c2bb, tokenId=130 )
|
169 |
FourCZ.Transfer( from=0x00000000...000000000, to=[Sender] 0x94c1e3a7d8a2cbb0ab306d05148f0f24f1e1c2bb, tokenId=131 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x94C1E3a7...4f1E1C2BB |
0.179024403409646797 Eth
Nonce: 1989
|
0.176327865914586787 Eth
Nonce: 1990
| 0.00269653749506001 | ||
0xa11b4923...e3254b732 | |||||
0xeBec795c...8F299cAcf
Miner
| (Fee Recipient: 0xeBe...Acf) | 20,622.656973795035241043 Eth | 20,622.656982146035241043 Eth | 0.000008351 |
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();