Transaction Hash:
Block:
15244480 at Jul-30-2022 03:03:03 PM +UTC
Transaction Fee:
0.00067924490522513 ETH
$1.74
Gas Used:
30,235 Gas / 22.465516958 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2DaA3596...79C930E5e
Miner
| (Poolin 2) | 886.603247442444380258 Eth | 886.603277677444380258 Eth | 0.000030235 | |
0x815428DD...93e6ffC74 |
0.032753090395983544 Eth
Nonce: 43
|
0.032073845490758414 Eth
Nonce: 44
| 0.00067924490522513 |
Execution Trace
ETH 0.025
MaxPepeNFT.mint( _mintAmount=5 )
mint[MaxPepeNFT (ln:56)]
_safeMint[MaxPepeNFT (ln:58)]
_msgSender[MaxPepeNFT (ln:58)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.8.9 <0.9.0;//-------------------------// MAXPEPE by YCOPY//-------------------------// !quarkimport '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,