Transaction Hash:
Block:
18301508 at Oct-07-2023 10:11:23 PM +UTC
Transaction Fee:
0.000720944513919682 ETH
$1.84
Gas Used:
110,206 Gas / 6.541790047 Gwei
Emitted Events:
187 |
MutantTrumpHoundsClub.Transfer( from=0x00000000...000000000, to=[Sender] 0xcb2f614391ef6fa6bca7ce4dedeef694c79c732c, tokenId=5101 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 16.929720476191124222 Eth | 16.929731496791124222 Eth | 0.0000110206 | |
0xCb2f6143...4C79c732c |
0.003002738819373008 Eth
Nonce: 2
|
0.002281794305453326 Eth
Nonce: 3
| 0.000720944513919682 | ||
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();