Transaction Hash:
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
Emitted Events:
457 |
DopeBirdsClub.Transfer( from=0x00000000...000000000, to=[Sender] 0x815428dd0a945fc7d8bd1edd7c82b2493e6ffc74, tokenId=5619 )
|
458 |
DopeBirdsClub.Transfer( from=0x00000000...000000000, to=[Sender] 0x815428dd0a945fc7d8bd1edd7c82b2493e6ffc74, tokenId=5620 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x00192Fb1...d1BF599E8
Miner
| (2Miners: PPLNS) | 8,172.647581305964096553 Eth | 8,172.647710829464096553 Eth | 0.0001295235 | |
0x5ef37d3c...E169eD736 | 1.3262 Eth | 1.3322 Eth | 0.006 | ||
0x815428DD...93e6ffC74 |
0.009248368793821 Eth
Nonce: 1
|
0.001995106914830362 Eth
Nonce: 2
| 0.007253261878990638 |
Execution Trace
ETH 0.006
DopeBirdsClub.mint( _mintAmount=2 )
mint[DopeBirdsClub (ln:52)]
_safeMint[DopeBirdsClub (ln:54)]
_msgSender[DopeBirdsClub (ln:54)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma 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,