Transaction Hash:
Block:
17478782 at Jun-14-2023 02:30:23 PM +UTC
Transaction Fee:
0.001903739304624542 ETH
$5.94
Gas Used:
89,702 Gas / 21.222930421 Gwei
Emitted Events:
201 |
FunBirthday.Transfer( from=0x00000000...000000000, to=[Sender] 0x2b71e4f923b044da6e7d3b77d5ad6a354f97bfb5, tokenId=101 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x20230614...95910fD54 | |||||
0x2b71e4F9...54f97bFB5 |
0.002791693768564456 Eth
Nonce: 17
|
0.000887954463939914 Eth
Nonce: 18
| 0.001903739304624542 | ||
0x690B9A9E...Db4FaC990
Miner
| (builder0x69) | 2.248605384565401672 Eth | 2.248614354765401672 Eth | 0.0000089702 |
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) {