Transaction Hash:
Block:
22098634 at Mar-21-2025 11:47:59 PM +UTC
Transaction Fee:
0.000012248811909975 ETH
$0.03
Gas Used:
26,781 Gas / 0.457369475 Gwei
Emitted Events:
282 |
Checks.ApprovalForAll( owner=[Sender] 0x1840b2db2f59047f012f718633e8d4e87e9ab26b, operator=0x27D32d1C...37afa8515, approved=False )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1840b2dB...87e9Ab26B |
0.00195634388420037 Eth
Nonce: 6
|
0.001944095072290395 Eth
Nonce: 7
| 0.000012248811909975 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 17.819476274478906546 Eth | 17.819477438233255083 Eth | 0.000001163754348537 |
Execution Trace
Checks.setApprovalForAll( operator=0x27D32d1C9C2cFe629dd39B9374FD99537afa8515, approved=False )
setApprovalForAll[CHECKS721 (ln:2238)]
_setApprovalForAll[CHECKS721 (ln:2239)]
ERC721__InvalidApproval[CHECKS721 (ln:2551)]
ApprovalForAll[CHECKS721 (ln:2554)]
_msgSender[CHECKS721 (ln:2239)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional metadata extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Metadata is IERC721 {/*** @dev Returns the token collection name.*/function name() external view returns (string memory);/*** @dev Returns the token collection symbol.*/function symbol() external view returns (string memory);/*** @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.*/function tokenURI(uint256 tokenId) external view returns (string memory);}// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)pragma solidity ^0.8.0;import "../../utils/introspection/IERC165.sol";