ETH Price: $3,150.74 (+5.93%)

Transaction Decoder

Block:
17799076 at Jul-29-2023 01:44:59 PM +UTC
Transaction Fee:
0.002388573878265199 ETH $7.53
Gas Used:
87,211 Gas / 27.388447309 Gwei

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
7.621369389786155437 Eth7.621378110886155437 Eth0.0000087211
0x99999999...53Da50626
0xc4fb550F...EdF897e5e
0.008809993563641508 Eth
Nonce: 1417
0.006421419685376309 Eth
Nonce: 1418
0.002388573878265199

Execution Trace

TeamsCommemorativeNFT.mint( )
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.20;
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 {SafeTransferLib} from "solady/utils/SafeTransferLib.sol";
import "../IERC4906.sol";
import "../IMetadataRenderer.sol";
contract TeamsCommemorativeNFT is ERC721A, IERC4906, Ownable {
address public metadataRenderer;
address public metadataUpdater;
uint256 public mintEnd;
bytes32 public merkleRoot;
error InvalidTokenId();
error InvalidProof();
error MerkleRootNotSet();
error MintClosed();
error MintedAlready();
error OnlyOwnerOrMetadataUpdater();
constructor() ERC721A("!teams player", "TPLYR") {
if (msg.sender != tx.origin) {
_transferOwnership(tx.origin);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX