ETH Price: $2,538.72 (-0.99%)
Gas: 0.32 Gwei

Transaction Decoder

Block:
15244480 at Jul-30-2022 03:03:03 PM +UTC
Transaction Fee:
0.00067924490522513 ETH $1.72
Gas Used:
30,235 Gas / 22.465516958 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Poolin 2)
886.603247442444380258 Eth886.603277677444380258 Eth0.000030235
0x815428DD...93e6ffC74
0.032753090395983544 Eth
Nonce: 43
0.032073845490758414 Eth
Nonce: 44
0.00067924490522513

Execution Trace

ETH 0.025 MaxPepeNFT.mint( _mintAmount=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.9 <0.9.0;
//-------------------------
// MAXPEPE by YCOPY
//-------------------------
// !quark
import 'erc721a/contracts/extensions/ERC721AQueryable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
contract MaxPepeNFT is ERC721AQueryable, Ownable, ReentrancyGuard {
using Strings for uint256;
bytes32 public merkleRoot;
mapping(address => bool) public whitelistClaimed;
string public uriPrefix = '';
string public uriSuffix = '.json';
string public hiddenMetadataUri;
uint256 public cost;
uint256 public maxSupply;
uint256 public maxMintAmountPerTx;
bool public paused = true;
bool public whitelistMintEnabled = false;
bool public revealed = false;
constructor(
string memory _tokenName,
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX