Transaction Hash:
Block:
17528801 at Jun-21-2023 03:03:11 PM +UTC
Transaction Fee:
0.000758684277511596 ETH
$2.76
Gas Used:
23,658 Gas / 32.068825662 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2B50F80D...46d890848 |
0.014925019613041293 Eth
Nonce: 70
|
0.014166335335529697 Eth
Nonce: 71
| 0.000758684277511596 | ||
0xd4E96eF8...a4F7605b7
Miner
| (Rocket Pool Smoothing Pool) | 134.04404726280197336 Eth | 134.04406796442731936 Eth | 0.000020701625346 |
Execution Trace
ETH 0.000614
FunBirthday.mint( count=1 )
mint[FunBirthday (ln:30)]
MintClosed[FunBirthday (ln:31)]
InvalidPrice[FunBirthday (ln:32)]
TooMany[FunBirthday (ln:33)]
_mint[FunBirthday (ln:34)]
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) {