Transaction Hash:
Block:
15149249 at Jul-15-2022 07:44:50 PM +UTC
Transaction Fee:
0.00510035 ETH
$14.29
Gas Used:
102,007 Gas / 50 Gwei
Emitted Events:
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5cFaaa11...1444cD0Ab | |||||
0x736c2636...6046409d4 |
0.009 Eth
Nonce: 0
|
0.00389965 Eth
Nonce: 1
| 0.00510035 | ||
0xB7e39086...afE43F707
Miner
| (Miner: 0xb7e...707) | 18.973916353195102566 Eth | 18.975744611864016738 Eth | 0.001828258668914172 |
Execution Trace
TheSaudiTigers.mint( _mintAmount=10 )
mint[TheSaudiTigers (ln:52)]
_safeMint[TheSaudiTigers (ln:54)]
_msgSender[TheSaudiTigers (ln:54)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.8.9 <0.9.0;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 TheSaudiTigers 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,string memory _tokenSymbol,uint256 _cost,uint256 _maxSupply,uint256 _maxMintAmountPerTx,