ETH Price: $3,541.77 (+2.85%)

Transaction Decoder

Block:
17300020 at May-20-2023 10:22:47 AM +UTC
Transaction Fee:
0.003153013286995908 ETH $11.17
Gas Used:
96,082 Gas / 32.815858194 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x00000000...28bC6628C 7.030620581228050393 Eth7.027702726380872689 Eth0.002917854847177704
(beaverbuild)
10.632233244003440646 Eth10.632242852203440646 Eth0.0000096082
0xc4fb550F...EdF897e5e
0.020600116466984775 Eth
Nonce: 1380
0.020364958027166571 Eth
Nonce: 1381
0.000235158439818204

Execution Trace

FunMint.mint( )
  • ETH 0.002917854847177704 0xc4fb550fa8f2a6e5178711e56d5b48dedf897e5e.CALL( )
    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 "./IERC4906.sol";
    import "./IMetadataRenderer.sol";
    contract FunMint is ERC721A, IERC4906, Ownable {
    address public metadataRenderer;
    address public metadataUpdater;
    mapping(uint256 => bool) public mintedSpecialByTokenId;
    uint256 public mintEnd;
    bytes32 merkleRoot;
    bytes32 merkleRootSpecial;
    // Refund constants
    uint256 public constant REFUND_BASE_GAS = 30_000;
    uint256 public constant MAX_REFUND_GAS_USED = 200_000;
    uint256 public constant MAX_REFUND_BASE_FEE = 200 gwei;
    uint256 public constant MAX_REFUND_PRIORITY_FEE = 2 gwei;
    bool private _initialized;
    string private _name;
    string private _symbol;
    error InvalidTokenId();
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX