Transaction Hash:
Block:
17368339 at May-30-2023 12:56:47 AM +UTC
Transaction Fee:
0.00116515473525 ETH
$3.08
Gas Used:
50,000 Gas / 23.303094705 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x77422fD7...12E8E3B0E |
0.030852407143981818 Eth
Nonce: 75
|
0.029687252408731818 Eth
Nonce: 76
| 0.00116515473525 | ||
0xA8C62111...c42632f64
Miner
| (Fee Recipient: 0xA8C...f64) | 9.809776096528193301 Eth | 9.809781096528193301 Eth | 0.000005 |
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();