An NFT auction repository to track ongoing and existing auctions.
- Start a node, this will run a local development network to deploy your contracts to.
npm hardhat node - Compile your contracts with
npm hardhat compile, if changes were made, runnpm hardhat testto ensure it doesn't break. - Deploy your contracts to the network.
npx hardhat run scripts/deploy.js --network localhost - Copy the addresses of your contracts deployed to
App.js, moveartifactsto /src. - Connect to the hardhat node in metamask. Add it there as custom rpc with chain id
31337connecting tohttp://127.0.0.1:8545 - Run
npm start