Transaction Hash:
Block:
18368449 at Oct-17-2023 06:57:23 AM +UTC
Transaction Fee:
0.000417000188710944 ETH
$1.15
Gas Used:
60,309 Gas / 6.914394016 Gwei
Emitted Events:
113 |
MutantTrumpHoundsClub.ApprovalForAll( owner=[Sender] 0x019c9cf3012c8f8f26912a587f093a0babe5a4a0, operator=0x1E004978...d54003c71, approved=True )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x019C9cF3...bABE5a4a0 |
0.009960036850279999 Eth
Nonce: 168
|
0.009543036661569055 Eth
Nonce: 169
| 0.000417000188710944 | ||
0x1f9090aa...8e676c326
Miner
| 2.706234740300573167 Eth | 2.706240771200573167 Eth | 0.0000060309 | ||
0xEEe31026...f9cF452F3 |
Execution Trace
MutantTrumpHoundsClub.setApprovalForAll( operator=0x1E0049783F008A0085193E00003D00cd54003c71, approved=True )

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