ETH Price: $3,475.23 (+2.96%)

Transaction Decoder

Block:
17478765 at Jun-14-2023 02:26:59 PM +UTC
Transaction Fee:
0.00140632226353674 ETH $4.89
Gas Used:
77,310 Gas / 18.190690254 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x20230614...95910fD54 0 Eth0.000614 Eth0.000614
(builder0x69)
1.900211917277266465 Eth1.900219648277266465 Eth0.000007731
0x755C8d16...294de0Cd4
0.040540370858028 Eth
Nonce: 2137
0.03852004859449126 Eth
Nonce: 2138
0.00202032226353674

Execution Trace

ETH 0.000614 FunBirthday.mint( count=1 )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: UNLICENSED
pragma 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) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX