Transaction Hash:
Block:
18674241 at Nov-29-2023 02:18:23 AM +UTC
Transaction Fee:
0.002396945984520815 ETH
$6.04
Gas Used:
75,419 Gas / 31.781725885 Gwei
Emitted Events:
294 |
FourCZ.Transfer( from=0x00000000...000000000, to=[Sender] 0x91edc55d7e42bed125ee12cdaeb875ba8f60d476, tokenId=2357 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x91EdC55D...A8f60D476 |
0.077322883814464764 Eth
Nonce: 106
|
0.074125937829943949 Eth
Nonce: 107
| 0.003196945984520815 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 9.682453238989151398 Eth | 9.682460780889151398 Eth | 0.0000075419 | |
0xa11b4923...e3254b732 | 0.0024 Eth | 0.0032 Eth | 0.0008 |
Execution Trace
ETH 0.0008
FourCZ.mint( amount=1 )
mint[FourCZ (ln:260)]
_msgSenderERC721A[FourCZ (ln:261)]
totalSupply[FourCZ (ln:262)]
_startTokenId[FourCZ (ln:348)]
_mint[FourCZ (ln:264)]
_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();