https://github.com/camerodev/nft-minter-basic
NFT Minter is a tool for creating and managing Non-Fungible Tokens (NFTs). It makes it easy to create ERC-721 tokens on the Ethereum blockchain, allowing you to create digital collectibles, tokenized assets, games, and more.
https://github.com/camerodev/nft-minter-basic
api blockchain nft react
Last synced: about 1 month ago
JSON representation
NFT Minter is a tool for creating and managing Non-Fungible Tokens (NFTs). It makes it easy to create ERC-721 tokens on the Ethereum blockchain, allowing you to create digital collectibles, tokenized assets, games, and more.
- Host: GitHub
- URL: https://github.com/camerodev/nft-minter-basic
- Owner: camerodev
- Created: 2024-03-15T16:40:48.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-15T16:40:53.000Z (about 1 year ago)
- Last Synced: 2025-04-07T16:43:28.138Z (about 2 months ago)
- Topics: api, blockchain, nft, react
- Language: JavaScript
- Homepage:
- Size: 387 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ✅ [Completed] NFT Minter Tutorial
This project contains the COMPLETED files for [Alchemy's NFT Minter tutorial](https://docs.alchemyapi.io/alchemy/tutorials/nft-minter), in which we teach you how to connect your smart contract to your React dApp project by building an NFT Minter using Metamask and Web3. It is best used as a reference.
# 🪜 Installation
To use this minter, you'll need to do the following:1. Run `npm install` to download the `node_modules` folder.
2. Download the [dotenv package](https://www.npmjs.com/package/dotenv) in your project directory by running `npm install dotenv --save` in your terminal
3. Create a `.env` file in the root directory this `nft-minter` by entering the following on your command line: `vim .env` and then add your [Alchemy API Key](https://docs.alchemyapi.io/alchemy/tutorials/nft-minter#create-your-alchemy-api-key) and [Pinata Key and Secret](https://pinata.cloud/keys). Altogether, your `.env` file should look like so:```
REACT_APP_PINATA_KEY =
REACT_APP_PINATA_SECRET =
REACT_APP_ALCHEMY_KEY = https://eth-ropsten.alchemyapi.io/v2/
```
4. Run `npm start`in your terminal to open the minter in your browser at http://localhost:3000/.