Transaction Hash:
Block:
17373245 at May-30-2023 05:32:47 PM +UTC
Transaction Fee:
0.004927909176882314 ETH
$15.11
Gas Used:
110,194 Gas / 44.720303981 Gwei
Emitted Events:
162 |
MutantTrumpHoundsClub.Transfer( from=0x00000000...000000000, to=[Sender] 0x4c3a9d7e0ad6da7f4e5f6b98eced4382a2ed3429, tokenId=4745 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 8.2246725831744737 Eth | 8.224696204237006614 Eth | 0.000023621062532914 | ||
0x4c3A9D7E...2a2Ed3429 |
0.028231010684967136 Eth
Nonce: 56
|
0.023303101508084822 Eth
Nonce: 57
| 0.004927909176882314 | ||
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();