├── .gitignore ├── README.md ├── contracts └── MyNFT.sol ├── hardhat.config.js ├── img ├── 0.json ├── 0.png ├── 0.svg ├── 1.json ├── 1.png ├── 1.svg ├── 2.json ├── 2.png ├── 2.svg ├── 3.json ├── 3.png ├── 3.svg ├── 4.json ├── 4.png ├── 4.svg ├── 5.json ├── 5.png ├── 5.svg ├── 6.json ├── 6.png ├── 6.svg ├── 7.json ├── 7.png ├── 7.svg ├── 8.json ├── 8.png ├── 8.svg ├── 9.json ├── 9.png ├── 9.svg ├── placeholder.png └── placeholder.svg ├── index.html ├── package.json ├── scripts └── sample-script.js ├── src ├── App.css ├── App.jsx ├── components │ ├── Home.jsx │ ├── Install.jsx │ └── WalletBalance.jsx ├── favicon.svg ├── index.css ├── logo.svg └── main.jsx ├── test └── sample-test.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /contracts/MyNFT.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/contracts/MyNFT.sol -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /img/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/0.json -------------------------------------------------------------------------------- /img/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/0.png -------------------------------------------------------------------------------- /img/0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/0.svg -------------------------------------------------------------------------------- /img/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/1.json -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/1.png -------------------------------------------------------------------------------- /img/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/1.svg -------------------------------------------------------------------------------- /img/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/2.json -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/2.png -------------------------------------------------------------------------------- /img/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/2.svg -------------------------------------------------------------------------------- /img/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/3.json -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/3.png -------------------------------------------------------------------------------- /img/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/3.svg -------------------------------------------------------------------------------- /img/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/4.json -------------------------------------------------------------------------------- /img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/4.png -------------------------------------------------------------------------------- /img/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/4.svg -------------------------------------------------------------------------------- /img/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/5.json -------------------------------------------------------------------------------- /img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/5.png -------------------------------------------------------------------------------- /img/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/5.svg -------------------------------------------------------------------------------- /img/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/6.json -------------------------------------------------------------------------------- /img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/6.png -------------------------------------------------------------------------------- /img/6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/6.svg -------------------------------------------------------------------------------- /img/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/7.json -------------------------------------------------------------------------------- /img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/7.png -------------------------------------------------------------------------------- /img/7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/7.svg -------------------------------------------------------------------------------- /img/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/8.json -------------------------------------------------------------------------------- /img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/8.png -------------------------------------------------------------------------------- /img/8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/8.svg -------------------------------------------------------------------------------- /img/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/9.json -------------------------------------------------------------------------------- /img/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/9.png -------------------------------------------------------------------------------- /img/9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/9.svg -------------------------------------------------------------------------------- /img/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/placeholder.png -------------------------------------------------------------------------------- /img/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/img/placeholder.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/package.json -------------------------------------------------------------------------------- /scripts/sample-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/scripts/sample-script.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/src/components/Home.jsx -------------------------------------------------------------------------------- /src/components/Install.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/src/components/Install.jsx -------------------------------------------------------------------------------- /src/components/WalletBalance.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/src/components/WalletBalance.jsx -------------------------------------------------------------------------------- /src/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/src/favicon.svg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/src/index.css -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/src/main.jsx -------------------------------------------------------------------------------- /test/sample-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/test/sample-test.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/web3-nft-dapp-tutorial/HEAD/vite.config.js --------------------------------------------------------------------------------