Transaction Hash:
Block:
22553306 at May-24-2025 02:30:47 PM +UTC
Transaction Fee:
0.000053522095816105 ETH
$0.14
Gas Used:
46,105 Gas / 1.160874001 Gwei
Emitted Events:
589 |
Treeverse.ApprovalForAll( owner=[Sender] 0xda99a1b7c89caa2341a5ac9f2a1523266645ff2a, operator=0x1E004978...d54003c71, approved=True )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1B829B92...0C09D02b2 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 7.620139196172690553 Eth | 7.620162248672690553 Eth | 0.0000230525 | |
0xdA99a1b7...66645Ff2A |
0.027237473850393746 Eth
Nonce: 812
|
0.027183951754577641 Eth
Nonce: 813
| 0.000053522095816105 |
Execution Trace
Treeverse.setApprovalForAll( operator=0x1E0049783F008A0085193E00003D00cd54003c71, approved=True )
setApprovalForAll[ERC721 (ln:763)]
_msgSender[ERC721 (ln:764)]
_msgSender[ERC721 (ln:766)]
ApprovalForAll[ERC721 (ln:767)]
_msgSender[ERC721 (ln:767)]
1234567891011121314151617181920212223242526// Sources flattened with hardhat v2.1.2 https://hardhat.org// File @openzeppelin/contracts/utils/Context.sol@v4.0.0// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691return msg.data;}