This app is an NFT visualizer for ERC1155 tokens. In this case, the Super Mario World NFT collection is visualized. To run locally and check it out, do the following steps:
- Download this repo files;
- On root folder, run
npm install
; - Create a
.env
file and insert a wallet private key (PRIVATE_KEY
) and a RPC provider (MUMBAI_RPC
) - recommended: Mumbai testnet (https://rpc-mumbai.maticvigil.com/). OR Simply replace this variables onhardhat.config.js
file; - Get some fake MATIC to deploy the smart contract with this faucet;
- On root folder, run this command on terminal:
npx hardhat run scripts/deploy.js --network mumbai
; - Store the address of deployment;
- Go to the
frontend
folder and run on terminal:npm install
; - Then, run
npm start
; - Have fun!