ETH Price: $2,532.84 (-0.25%)

Transaction Decoder

Block:
17055033 at Apr-15-2023 09:25:23 PM +UTC
Transaction Fee:
0.000750945403978179 ETH $1.90
Gas Used:
30,531 Gas / 24.596161409 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x0Bd0d17f...78aDe72f4
0.008684206903387944 Eth
Nonce: 7
0.007933261499409765 Eth
Nonce: 8
0.000750945403978179
(Fee Recipient: 0x6d2...766)
92.733320964676690841 Eth92.733326170926097214 Eth0.000005206249406373

Execution Trace

MutantTrumpHoundsClub.mint( amount=5 )
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