Transaction Hash:
Block:
17372967 at May-30-2023 04:36:59 PM +UTC
Transaction Fee:
0.006574467403315336 ETH
$24.47
Gas Used:
110,194 Gas / 59.662662244 Gwei
Emitted Events:
203 |
MutantTrumpHoundsClub.Transfer( from=0x00000000...000000000, to=[Sender] 0xd1f3b94e3e6f4ee6f767fa27059fa475c33a09da, tokenId=4738 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 72.660555123021213116 Eth | 72.660566142421213116 Eth | 0.0000110194 | |
0xd1f3B94e...5c33a09dA |
0.120640414607225061 Eth
Nonce: 16
|
0.114065947203909725 Eth
Nonce: 17
| 0.006574467403315336 | ||
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();