Transaction Hash:
Block:
21447950 at Dec-21-2024 02:36:59 AM +UTC
Transaction Fee:
0.000388518396213597 ETH
$1.08
Gas Used:
46,077 Gas / 8.431937761 Gwei
Emitted Events:
278 |
FourCZ.ApprovalForAll( owner=[Sender] 0xb13dd5395800420f20675e14b775b16b08ff0a15, operator=0x1E004978...d54003c71, approved=True )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 10.390091693969132264 Eth | 10.390130074820160572 Eth | 0.000038380851028308 | |
0xa11b4923...e3254b732 | |||||
0xB13DD539...b08ff0a15 |
0.017228519475703832 Eth
Nonce: 442
|
0.016840001079490235 Eth
Nonce: 443
| 0.000388518396213597 |
Execution Trace
FourCZ.setApprovalForAll( operator=0x1E0049783F008A0085193E00003D00cd54003c71, approved=True )
setApprovalForAll[FourCZ (ln:511)]
_msgSenderERC721A[FourCZ (ln:512)]
ApproveToCaller[FourCZ (ln:512)]
_msgSenderERC721A[FourCZ (ln:513)]
ApprovalForAll[FourCZ (ln:514)]
_msgSenderERC721A[FourCZ (ln:514)]
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();