Transaction Hash:
Block:
17478677 at Jun-14-2023 02:09:11 PM +UTC
Transaction Fee:
0.001854550048041394 ETH
$6.90
Gas Used:
82,078 Gas / 22.594971223 Gwei
Emitted Events:
95 |
FunBirthday.Transfer( from=0x00000000...000000000, to=[Sender] 0xfb843f8c4992efdb6b42349c35f025ca55742d33, tokenId=1 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x13ad787D...599B06da0
Miner
| 102.494626369782279041 Eth | 102.494872603782279041 Eth | 0.000246234 | ||
0x20230614...95910fD54 | |||||
0xfB843f8c...a55742D33 |
0.180164532283162244 Eth
Nonce: 2882
|
0.17830998223512085 Eth
Nonce: 2883
| 0.001854550048041394 |
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) {