ETH Price: $2,580.65 (-1.06%)

Transaction Decoder

Block:
15131231 at Jul-13-2022 01:00:30 AM +UTC
Transaction Fee:
0.001253261878990638 ETH $3.23
Gas Used:
86,349 Gas / 14.513913062 Gwei

Account State Difference:

  Address   Before After State Difference Code
(2Miners: PPLNS)
8,172.647581305964096553 Eth8,172.647710829464096553 Eth0.0001295235
0x5ef37d3c...E169eD736 1.3262 Eth1.3322 Eth0.006
0x815428DD...93e6ffC74
0.009248368793821 Eth
Nonce: 1
0.001995106914830362 Eth
Nonce: 2
0.007253261878990638

Execution Trace

ETH 0.006 DopeBirdsClub.mint( _mintAmount=2 )
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;
import 'erc721a/contracts/ERC721A.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
contract DopeBirdsClub is ERC721A, 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,
string memory _tokenSymbol,
uint256 _cost,
uint256 _maxSupply,
uint256 _maxMintAmountPerTx,
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX