Transaction Hash:
Block:
17368704 at May-30-2023 02:12:11 AM +UTC
Transaction Fee:
0.004016619860953084 ETH
$15.14
Gas Used:
110,194 Gas / 36.450440686 Gwei
Emitted Events:
73 |
MutantTrumpHoundsClub.Transfer( from=0x00000000...000000000, to=[Sender] 0x6855f19179f9d7588d29470a216a8a3d0423b615, tokenId=4726 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x6855f191...D0423B615 |
0.042745272911556323 Eth
Nonce: 117
|
0.038728653050603239 Eth
Nonce: 118
| 0.004016619860953084 | ||
0xDAFEA492...692c98Bc5
Miner
| (Flashbots: Builder) | 0.050097011776423471 Eth | 0.050317399776423471 Eth | 0.000220388 | |
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();