ETH Price: $4,393.78 (+2.70%)

Transaction Decoder

Block:
14192213 at Feb-12-2022 04:02:00 PM +UTC
Transaction Fee:
0.009284678670358466 ETH $40.79
Gas Used:
124,738 Gas / 74.433441857 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Flexpool.io)
4,977.063686768763526265 Eth4,977.063811506763526265 Eth0.000124738
0xc9353469...0FbF453b3
0.500870018131754121 Eth
Nonce: 5
0.195585339461395655 Eth
Nonce: 6
0.305284678670358466
0xe39Fb076...4fDc5FF46 473.936 Eth474.232 Eth0.296

Execution Trace

ETH 0.296 Alpacadabraz_3D.whitelistMint( )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.9;
import "Ownable.sol";
import "ERC721.sol";
import "MerkleProof.sol";
contract Alpacadabraz_3D is ERC721, Ownable {
bytes32 public merkleRoot = ""; // Construct this from (address, amount) tuple elements for whitelisted mints
bytes32 public freeMintMerkleRoot = ""; // Construct this from (address, amount) tuple elements for free mints
mapping(address => uint) public whitelistRemaining; // Maps user address to their remaining mints if they have minted some but not all of their
        allocation
mapping(address => bool) public whitelistUsed; // Maps user address to bool, true if user has minted
mapping(address => uint) public freeMintsRemaining; // Maps user address to their remaining free mints if they have minted some but not all of
        their allocation
mapping(address => bool) public freeMintUsed; // Maps user address to bool, true if user has used a free mint
uint public mintPrice = 0.296 ether;
uint public whitelistPrice = 0.96 ether;
uint public maxItems = 19969;
uint public totalSupply = 0;
uint public maxPublicMint = 4700;
uint public publicMinted = 0;
uint public maxItemsPerTx = 50;
uint public maxItemsPerPublicMint = 10;
address public recipient;
string public _baseTokenURI;
uint public startTimestamp;
event Mint(address indexed owner, uint indexed tokenId);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX