Transaction Hash:
Block:
18645599 at Nov-25-2023 02:01:35 AM +UTC
Transaction Fee:
0.00060635948119187 ETH
$1.59
Gas Used:
30,335 Gas / 19.988774722 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 1.997481471160081043 Eth | 1.997482987910081043 Eth | 0.00000151675 | ||
0x52385eFc...AabB330a5 |
0.002051869346320561 Eth
Nonce: 7
|
0.009445509865128691 Eth
Nonce: 8
| 0.00739364051880813 | ||
0xa11b4923...e3254b732 | 0.008 Eth | 0 Eth | 0.008 |
Execution Trace
FourCZ.CALL( )

- ETH 0.008
0x52385efce161dfd8fe96e26ee19ca2baabb330a5.CALL( )
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();