├── .gitignore ├── README.md ├── contracts ├── Greeter.sol └── POTI.sol ├── hardhat.config.js ├── nft-metadata.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── scripts └── deploy.js ├── src ├── App.css ├── App.js ├── App.test.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js └── test └── sample-test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Greeter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/contracts/Greeter.sol -------------------------------------------------------------------------------- /contracts/POTI.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/contracts/POTI.sol -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /nft-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/nft-metadata.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/public/robots.txt -------------------------------------------------------------------------------- /scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/scripts/deploy.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /test/sample-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresvidoza/react-dapp/HEAD/test/sample-test.js --------------------------------------------------------------------------------