Transaction Hash:
Block:
17598066 at Jul-01-2023 08:36:47 AM +UTC
Transaction Fee:
0.00045101489733639 ETH
$1.39
Gas Used:
31,719 Gas / 14.21907681 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x12Cec22a...e24af052d |
0.621708392990782285 Eth
Nonce: 19
|
0.621257378093445895 Eth
Nonce: 20
| 0.00045101489733639 | ||
0x1f9090aa...8e676c326
Miner
| 2.21015545499130128 Eth | 2.21015862689130128 Eth | 0.0000031719 |
Execution Trace
FunBirthday.allowlistMint( )
allowlistMint[FunBirthday (ln:36)]
MintClosed[FunBirthday (ln:37)]
_getAux[FunBirthday (ln:38)]
MintedAllowlistAlready[FunBirthday (ln:39)]
verify[FunBirthday (ln:40)]
InvalidProof[FunBirthday (ln:41)]
_setAux[FunBirthday (ln:42)]
_mint[FunBirthday (ln:43)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity ^0.8.19;import {Ownable} from "openzeppelin/access/Ownable.sol";import {ERC721A} from "ERC721A/ERC721A.sol";import {IERC721} from "openzeppelin/token/ERC721/IERC721.sol";import {IERC721Metadata} from "openzeppelin/token/ERC721/extensions/IERC721Metadata.sol";import {IERC165} from "openzeppelin/utils/introspection/IERC165.sol";import {MerkleProofLib} from "solmate/utils/MerkleProofLib.sol";import "../Fundrop/IERC4906.sol";import "../Fundrop/IMetadataRenderer.sol";contract FunBirthday is ERC721A, IERC4906, Ownable {uint256 public publicMintPrice = 0.000614 ether;address public metadataRenderer;address public metadataUpdater;uint256 public mintEnd;bytes32 public merkleRoot;error InvalidTokenId();error InvalidPrice();error InvalidProof();error MerkleRootNotSet();error MintClosed();error MintedAllowlistAlready();error OnlyOwnerOrMetadataUpdater();error TooMany();constructor() ERC721A("mint.fun turns one", "FUNBIRTHDAY") {if (msg.sender != tx.origin) {