ETH Price: $2,801.66 (+4.49%)

Transaction Decoder

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

Account State Difference:

  Address   Before After State Difference Code
0x5cFaaa11...1444cD0Ab
0x736c2636...6046409d4
0.009 Eth
Nonce: 0
0.00389965 Eth
Nonce: 1
0.00510035
(Miner: 0xb7e...707)
18.973916353195102566 Eth18.975744611864016738 Eth0.001828258668914172

Execution Trace

TheSaudiTigers.mint( _mintAmount=10 )
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/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,
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX