An open API service indexing awesome lists of open source software.

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.

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/.