ETH Price: $3,777.93 (+0.99%)

Transaction Decoder

Block:
18278018 at Oct-04-2023 03:21:59 PM +UTC
Transaction Fee:
0.001798170757718986 ETH $6.79
Gas Used:
110,194 Gas / 16.318227469 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Lido: Execution Layer Rewards Vault)
25.443505064742623284 Eth25.443516084142623284 Eth0.0000110194
0xEA94e883...dA2782Ae0
0.013837238517681527 Eth
Nonce: 235
0.012039067759962541 Eth
Nonce: 236
0.001798170757718986
0xEEe31026...f9cF452F3

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