simple-nfterc721
Version:
Simple ERC721 NFT with Merkle Proof for WhiteList, using Hardhat and Foundry
43 lines (28 loc) • 987 B
Markdown
# Sample NFT ERC721 Hardhat Project
This project demonstrates a basic ERC721 contract setup with Hardhat and Foundry.
> **Warning**
> This smart contract repository was created for educational purposes only, to teach the basics of Solidity programming, testing with Hardhat and Foundry. It is not recommended for use in production as it has not undergone extensive testing and may contain undiscovered bugs and errors. Please use at your own risk.
This NFT contract has these functionality:
- Merkle Proofs white list
- 1000 max supply
- Start white list minting before public mint
- Maximum 2 nfts can be min per address
## Install Dependencies
```bash
npm install
```
## Run test with Hardhat
```bash
npx hardhat test
```
## List all Hardhat tasks
```bash
npx hardhat help
```
## Run test with Foundry
```bash
forge test
```
## Documentation
- [Hardhat Documentation](https://hardhat.org/getting-started/)
- [Foundry Documentation](https://book.getfoundry.sh/index.html)