Transaction Hash:
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
Emitted Events:
242 |
Alpacadabraz_3D.Transfer( from=0x00000000...000000000, to=[Sender] 0xc9353469c0abc61673a7f239be9c8970fbf453b3, tokenId=1857 )
|
243 |
Alpacadabraz_3D.Mint( owner=[Sender] 0xc9353469c0abc61673a7f239be9c8970fbf453b3, tokenId=1857 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x7F101fE4...353f2B90c
Miner
| (Flexpool.io) | 4,977.063686768763526265 Eth | 4,977.063811506763526265 Eth | 0.000124738 | |
0xc9353469...0FbF453b3 |
0.500870018131754121 Eth
Nonce: 5
|
0.195585339461395655 Eth
Nonce: 6
| 0.305284678670358466 | ||
0xe39Fb076...4fDc5FF46 | 473.936 Eth | 474.232 Eth | 0.296 |
Execution Trace
ETH 0.296
Alpacadabraz_3D.whitelistMint( )
whitelistMint[Alpacadabraz_3D (ln:48)]
verify[Alpacadabraz_3D (ln:50)]
verify[Alpacadabraz_3D (ln:98)]
processProof[MerkleProof (ln:1109)]
_mintWithoutValidation[Alpacadabraz_3D (ln:66)]
123456789101112131415161718192021222324// SPDX-License-Identifier: GPL-3.0pragma 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 mintsbytes32 public freeMintMerkleRoot = ""; // Construct this from (address, amount) tuple elements for free mintsmapping(address => uint) public whitelistRemaining; // Maps user address to their remaining mints if they have minted some but not all of theirallocationmapping(address => bool) public whitelistUsed; // Maps user address to bool, true if user has mintedmapping(address => uint) public freeMintsRemaining; // Maps user address to their remaining free mints if they have minted some but not all oftheir allocationmapping(address => bool) public freeMintUsed; // Maps user address to bool, true if user has used a free mintuint 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);