ETH Price: $2,704.06 (+8.42%)

Transaction Decoder

Block:
17362108 at May-29-2023 03:54:47 AM +UTC
Transaction Fee:
0.001707690953802286 ETH $4.62
Gas Used:
60,194 Gas / 28.369786919 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x358165bE...77b539347
0.075097488935632764 Eth
Nonce: 35
0.073389797981830478 Eth
Nonce: 36
0.001707690953802286
(builder0x69)
1.525568090284149611 Eth1.525574109684149611 Eth0.0000060194

Execution Trace

MutantTrumpHoundsClub.mint( amount=1 )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma 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();
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX