Transaction Hash:
Block:
17397656 at Jun-03-2023 04:02:47 AM +UTC
Transaction Fee:
0.001331975787204426 ETH
$5.72
Gas Used:
60,333 Gas / 22.077068722 Gwei
Emitted Events:
219 |
MutantTrumpHoundsClub.ApprovalForAll( owner=[Sender] 0x64553d1d708a2ca88cf68869643422acf5d3dcf1, operator=0x00000000...1F759a8A8, approved=True )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x64553d1d...CF5d3DcF1 |
0.320926556867513015 Eth
Nonce: 95
|
0.319594581080308589 Eth
Nonce: 96
| 0.001331975787204426 | ||
0xDAFEA492...692c98Bc5
Miner
| (Flashbots: Builder) | 0.035500303072810053 Eth | 0.035506336372810053 Eth | 0.0000060333 | |
0xEEe31026...f9cF452F3 |
Execution Trace
MutantTrumpHoundsClub.setApprovalForAll( operator=0x00000000000111AbE46ff893f3B2fdF1F759a8A8, approved=True )

-
OperatorFilterRegistry.isOperatorAllowed( registrant=0xEEe310260CefD96f4FEd3EcADC1EB0Af9cF452F3, operator=0x00000000000111AbE46ff893f3B2fdF1F759a8A8 ) => ( 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.*/