Transaction Hash:
Block:
17364033 at May-29-2023 10:23:59 AM +UTC
Transaction Fee:
0.002830255170612576 ETH
$10.84
Gas Used:
110,194 Gas / 25.684294704 Gwei
Emitted Events:
1027 |
MutantTrumpHoundsClub.Transfer( from=0x00000000...000000000, to=[Sender] 0x4c343b7ebf4f7d6bec8812e4e52912ad4f791424, tokenId=4641 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4c343B7e...d4f791424 |
0.026412080799562222 Eth
Nonce: 350
|
0.023581825628949646 Eth
Nonce: 351
| 0.002830255170612576 | ||
0x690B9A9E...Db4FaC990
Miner
| (builder0x69) | 1.443621027710939344 Eth | 1.443632047110939344 Eth | 0.0000110194 | |
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();