This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pragma solidity 0.8.0; | |
| import "@openzeppelin/contracts/utils/Strings.sol"; | |
| import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; | |
| import "@openzeppelin/contracts/utils/Counters.sol"; | |
| import "hardhat/console.sol"; | |
| import { Base64 } from "./libraries/Base64.sol"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import './styles/App.css'; | |
| import twitterLogo from './assets/twitter-logo.svg'; | |
| import { ethers } from "ethers"; | |
| import React, { useEffect, useState } from "react"; | |
| import myEpicNft from './utils/MyEpicNFT.json'; | |
| const TWITTER_HANDLE = '_buildspace'; | |
| const TWITTER_LINK = `https://twitter.com/${TWITTER_HANDLE}`; | |
| const OPENSEA_LINK = ''; | |
| const TOTAL_MINT_COUNT = 50; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Lesson 1 SUMMARY | |
| 1. The cursor is moved using either the arrow keys or the hjkl keys. | |
| h (left) j (down) k (up) l (right) | |
| 2. To start Vim from the shell prompt type: vim FILENAME <ENTER> | |
| 3. To exit Vim type: <ESC> :q! <ENTER> to trash all changes. | |
| OR type: <ESC> :wq <ENTER> to save the changes. |