Transaction Hash:
Block:
17055037 at Apr-15-2023 09:26:11 PM +UTC
Transaction Fee:
0.00077998136566443 ETH
$1.98
Gas Used:
30,531 Gas / 25.54719353 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0Bd0d17f...78aDe72f4 |
0.007132823991816693 Eth
Nonce: 9
|
0.006352842626152263 Eth
Nonce: 10
| 0.00077998136566443 | ||
0xeBec795c...8F299cAcf
Miner
| (Fee Recipient: 0xeBe...Acf) | 13,629.774894837205126619 Eth | 13,629.774955899205126619 Eth | 0.000061062 |
Execution Trace
MutantTrumpHoundsClub.mint( amount=5 )
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();