Transaction Hash:
Block:
17368115 at May-30-2023 12:10:59 AM +UTC
Transaction Fee:
0.002534462 ETH
$7.59
Gas Used:
110,194 Gas / 23 Gwei
Emitted Events:
263 |
MutantTrumpHoundsClub.Transfer( from=0x00000000...000000000, to=[Sender] 0xa29787c9bcd309161265ddbda3e28486a4b62c54, tokenId=4681 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0xa29787c9...6A4B62c54 |
0.080765028156851426 Eth
Nonce: 86
|
0.078230566156851426 Eth
Nonce: 87
| 0.002534462 | ||
0xE94f1fa4...BC086CA0c
Miner
| (Fee Recipient: 0xE94...A0c) | 2,366.461090725102299459 Eth | 2,366.461104112795934831 Eth | 0.000013387693635372 | |
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();