Transaction Hash:
Block:
18648312 at Nov-25-2023 11:07:47 AM +UTC
Transaction Fee:
0.002252361175095328 ETH
$5.98
Gas Used:
114,806 Gas / 19.618845488 Gwei
Emitted Events:
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x6C62C535...908f78BdE |
0.036630551600465307 Eth
Nonce: 466
|
0.034378190425369979 Eth
Nonce: 467
| 0.002252361175095328 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 12.028221667204636032 Eth | 12.028233147804636032 Eth | 0.0000114806 | |
0xa11b4923...e3254b732 |
Execution Trace
FourCZ.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();