Transaction Hash:
Block:
15147590 at Jul-15-2022 01:42:38 PM +UTC
Transaction Fee:
0.00608085 ETH
$15.28
Gas Used:
121,617 Gas / 50 Gwei
Emitted Events:
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2c3d660F...543974371 |
0.025 Eth
Nonce: 0
|
0.01891915 Eth
Nonce: 1
| 0.00608085 | ||
0x5cFaaa11...1444cD0Ab | |||||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 5,702.768630037180368223 Eth | 5,702.769157162491777624 Eth | 0.000527125311409401 |
Execution Trace
TheSaudiTigers.mint( _mintAmount=20 )
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,