Transaction Hash:
Block:
17364374 at May-29-2023 11:33:59 AM +UTC
Transaction Fee:
0.003033181042807804 ETH
$8.97
Gas Used:
110,194 Gas / 27.525827566 Gwei
Emitted Events:
410 |
MutantTrumpHoundsClub.Transfer( from=0x00000000...000000000, to=[Sender] 0xa7823403bf0645da696de0349204e3709c4ff625, tokenId=4645 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x9f4Cf329...9dd102a2A
Miner
| (Fee Recipient: 0x9f4...a2A) | 30.11998047504805719 Eth | 30.11999083328405719 Eth | 0.000010358236 | |
0xa7823403...09c4fF625 |
0.031571952152425298 Eth
Nonce: 20
|
0.028538771109617494 Eth
Nonce: 21
| 0.003033181042807804 | ||
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();