Transaction Hash:
Block:
18917320 at Jan-02-2024 04:26:35 AM +UTC
Transaction Fee:
0.000788771746913862 ETH
$2.19
Gas Used:
60,393 Gas / 13.060648534 Gwei
Emitted Events:
146 |
MutantTrumpHoundsClub.ApprovalForAll( owner=[Sender] 0x4e51a06e4643197e1be2f050b6af60f9ad3cef06, operator=0x2f18F339...1e1Be4DfB, approved=True )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4E51a06e...9AD3Cef06 |
0.424706566398888345 Eth
Nonce: 5572
|
0.423917794651974483 Eth
Nonce: 5573
| 0.000788771746913862 | ||
0xb9342D6A...1BD05744E
Miner
| 6.761136003325427531 Eth | 6.761142042625427531 Eth | 0.0000060393 | ||
0xEEe31026...f9cF452F3 |
Execution Trace
MutantTrumpHoundsClub.setApprovalForAll( operator=0x2f18F339620a63e43f0839Eeb18D7de1e1Be4DfB, approved=True )

-
OperatorFilterRegistry.isOperatorAllowed( registrant=0xEEe310260CefD96f4FEd3EcADC1EB0Af9cF452F3, operator=0x2f18F339620a63e43f0839Eeb18D7de1e1Be4DfB ) => ( True )
File 1 of 2: MutantTrumpHoundsClub
File 2 of 2: OperatorFilterRegistry
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity ^0.8.19;import "erc721a/contracts/ERC721A.sol";import "@openzeppelin/contracts/interfaces/IERC2981.sol";import "@openzeppelin/contracts/access/Ownable.sol";import "@openzeppelin/contracts/utils/Strings.sol";import "operator-filter-registry/src/DefaultOperatorFilterer.sol";contract MutantTrumpHoundsClub is ERC721A, IERC2981, Ownable, DefaultOperatorFilterer {using Strings for uint256;string public baseURI;string public extension;bool public mintEnabled = false;uint256 public maxPerWallet = 50;uint256 public maxPerTx = 20;uint256 public maxSupply = 6969;uint256 public price = 0.003 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.*/