Transaction Hash:
Block:
17368286 at May-30-2023 12:45:47 AM +UTC
Transaction Fee:
0.002326866382120742 ETH
$8.20
Gas Used:
110,194 Gas / 21.116089643 Gwei
Emitted Events:
377 |
MutantTrumpHoundsClub.Transfer( from=0x00000000...000000000, to=[Sender] 0x4529743e9963bba778e2ff756c62301df6161f78, tokenId=4695 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4529743E...df6161f78 |
0.00237719718151686 Eth
Nonce: 14
|
0.000050330799396118 Eth
Nonce: 15
| 0.002326866382120742 | ||
0xDAFEA492...692c98Bc5
Miner
| (Flashbots: Builder) | 0.090944348183105704 Eth | 0.090954706419105704 Eth | 0.000010358236 | |
0xEEe31026...f9cF452F3 |
Execution Trace
MutantTrumpHoundsClub.mint( amount=1 )
1234567891011121314151617181920212223242526// 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;uint256 public maxFree = 2;mapping(address => uint256) public _walletMints;error MintNotLive();error AlreadyMaxMinted();error MaxPerTx();error NotEnoughETH();error NoneLeft();error TokenDoesNotExist();error NotApprovedOrOwner();error WithdrawalFailed();