Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trustlessmatt/_buildspaceNFTProject
Programmatically generate your own NFT collection, write + deploy a smart contract in Solidity, and build your own React dApp to let friends connect their wallets and interact w/ your NFTs.
https://github.com/trustlessmatt/_buildspaceNFTProject
Last synced: about 1 month ago
JSON representation
Programmatically generate your own NFT collection, write + deploy a smart contract in Solidity, and build your own React dApp to let friends connect their wallets and interact w/ your NFTs.
- Host: GitHub
- URL: https://github.com/trustlessmatt/_buildspaceNFTProject
- Owner: mattdegods
- Created: 2021-09-29T23:09:27.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-16T22:12:12.000Z (about 3 years ago)
- Last Synced: 2024-02-13T08:38:50.506Z (10 months ago)
- Language: JavaScript
- Size: 1020 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-buildspace - _buildspaceNFTProject
README
# _buildspaceNFTProject
Programmatically generate your own NFT collection, write + deploy a smart contract in Solidity, and build your own React dApp to let friends connect their wallets and interact w/ your NFTs.# Hardhat Info
This project presents a basic Hardhat use case. In the \_buildspace course we used Hardhat to test and deploy our contracts via short deploy scripts. I still have more to learn about Hardhat, but I can navigate builds using the basic syntax:
`npx hardhat run scripts/run.js`
and
`npx hardhat run scripts/deploy.js --network rinkeby`Try running some of the following tasks:
```shell
npx hardhat accounts
npx hardhat compile
npx hardhat clean
npx hardhat test
npx hardhat node
node scripts/sample-script.js
npx hardhat help
```