In this project walkthrough, we are going to go through how you can create a dAPP UI that allows users to track the inventory of any wallet using Helius's API.
Sneak Peek:

In order to run locally:
npm install to install all our project dependenciesnpm run dev to run our applicationnpm install downloads the packages found in package.json
npm run dev runs the website. The website can now be accessed from localhost:3000 or 0.0.0.0
In order for queries to be made, a Helius API key is necessary - in order to obtain one, visit
https://www.helius.xyz
Now, create a file called .env.local on the outermost directory of the cloned repo, adding the following text into the file.
HELIUS_KEY = <your Helius API key>
The site is now fully functional on your local machine.