Transaction Hash:
Block:
21642939 at Jan-17-2025 08:11:59 AM +UTC
Transaction Fee:
0.000322557864392872 ETH
$0.79
Gas Used:
61,682 Gas / 5.229367796 Gwei
Emitted Events:
333 |
ForeverPunks.ApprovalForAll( owner=[Sender] 0xf09e3475d3d76556052ff309cddcdbe1ec5d70bf, operator=0x1E004978...d54003c71, approved=True )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x34eeCeDc...417770825 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 12.95219001339730067 Eth | 12.95224984493730067 Eth | 0.00005983154 | |
0xF09e3475...1eC5d70bF |
0.007303870721313081 Eth
Nonce: 65
|
0.006981312856920209 Eth
Nonce: 66
| 0.000322557864392872 |
Execution Trace
ForeverPunks.setApprovalForAll( operator=0x1E0049783F008A0085193E00003D00cd54003c71, approved=True )

-
OperatorFilterRegistry.isOperatorAllowed( registrant=0x34eeCeDc405006afe0B39C570b906e4417770825, operator=0x1E0049783F008A0085193E00003D00cd54003c71 ) => ( True )
setApprovalForAll[ForeverPunks (ln:119)]
setApprovalForAll[ForeverPunks (ln:120)]
File 1 of 2: ForeverPunks
File 2 of 2: OperatorFilterRegistry
12345678910111213141516// SPDX-License-Identifier: GPL-3.0pragma solidity ^0.8.20;import "@openzeppelin/contracts/access/Ownable.sol";import "@openzeppelin/contracts/security/ReentrancyGuard.sol";import "@openzeppelin/contracts/token/common/ERC2981.sol";import "@openzeppelin/contracts/utils/Counters.sol";import "@openzeppelin/contracts/utils/Strings.sol";import "@openzeppelin/contracts/utils/introspection/ERC165.sol";import {UpdatableOperatorFilterer} from "operator-filter-registry/src/UpdatableOperatorFilterer.sol";import {RevokableDefaultOperatorFilterer} from "operator-filter-registry/src/RevokableDefaultOperatorFilterer.sol";import "./ERC721R.sol";contract ForeverPunks is ERC721r, ERC2981, Ownable, ReentrancyGuard, RevokableDefaultOperatorFilterer {using Counters for Counters.Counter;using Strings for uint256; //allows for uint256var.tostring()uint256 public MAX_MINT_PER_WALLET_SALE = 35;uint256 public price = 0.0088 ether;
File 2 of 2: OperatorFilterRegistry
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.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.*/