Transaction Hash:
Block:
16857165 at Mar-18-2023 08:57:59 PM +UTC
Transaction Fee:
0.000319003119093868 ETH
$0.81
Gas Used:
24,221 Gas / 13.170518108 Gwei
Emitted Events:
426 |
StarNFTV4.ApprovalForAll( owner=[Sender] 0x68f697130e9626d1ccbaabde9a19a2789492071b, operator=0x1E004978...d54003c71, approved=False )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4F912cC6...E8169DffD | |||||
0x68F69713...89492071b |
0.001936442095962701 Eth
Nonce: 24
|
0.001617438976868833 Eth
Nonce: 25
| 0.000319003119093868 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 96.278286854048957559 Eth | 96.278289276148957559 Eth | 0.0000024221 |
Execution Trace
StarNFTV4.setApprovalForAll( operator=0x1E0049783F008A0085193E00003D00cd54003c71, approved=False )
setApprovalForAll[StarNFTV4 (ln:257)]
_msgSender[StarNFTV4 (ln:261)]
_msgSender[StarNFTV4 (ln:262)]
ApprovalForAll[StarNFTV4 (ln:263)]
_msgSender[StarNFTV4 (ln:263)]
1234567891011121314151617181920212223242526/*Copyright 2022 Project Galaxy.Licensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.SPDX-License-Identifier: Apache License, Version 2.0*/pragma solidity 0.7.6;import "IERC721.sol";import "IERC721Receiver.sol";import "IERC721Metadata.sol";import "Address.sol";import "Strings.sol";import "Ownable.sol";import "ERC165.sol";import "IStarNFT.sol";/*** @dev Fork https://github.com/generalgalactic/ERC721S and implement IStarNFT interface*/contract StarNFTV4 is Ownable, ERC165, IERC721, IERC721Metadata, IStarNFT {