Transaction Hash:
Block:
22466904 at May-12-2025 11:27:47 AM +UTC
Transaction Fee:
0.000371788002785334 ETH
$1.24
Gas Used:
46,146 Gas / 8.056776379 Gwei
Emitted Events:
463 |
Polyhedra2024.ApprovalForAll( owner=[Sender] 0x2f29f7b85ffeea2af3e5811348875b0a0d421c07, operator=0x2052f8A2...fdBE7f74b, approved=True )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2f29F7B8...a0D421c07 |
0.001689848590641531 Eth
Nonce: 73
|
0.001318060587856197 Eth
Nonce: 74
| 0.000371788002785334 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 11.611161199102245392 Eth | 11.611232942153283758 Eth | 0.000071743051038366 | |
0xb7545014...29d37b1c9 |
Execution Trace
Polyhedra2024.setApprovalForAll( operator=0x2052f8A2Ff46283B30084e5d84c89A2fdBE7f74b, approved=True )
setApprovalForAll[ERC721A (ln:541)]
_msgSenderERC721A[ERC721A (ln:542)]
ApprovalForAll[ERC721A (ln:543)]
_msgSenderERC721A[ERC721A (ln:543)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.*/constructor() {_transferOwnership(_msgSender());}/**