This directory contains the front end files (i.e., HTML, CSS, JS, Application Binary Interface (ABI) of smart contracts).
Access the front end by hosting your own server (see "option 2" and "option 3") or visiting the already hosted server (see "option 1").
- Install the latest version of Node.js. (This application has been tested with Node.js v20.0.0)
- Navigate to
/frontend/public
. - Open up a terminal and run the following command to set up an http server on port 3002:
npx http-server -p 9002
- Access the application by visiting
http://localhost:3002
- Install the latest version of Python. (This application has been tested with Python v3.11.3)
- Navigate to
/frontend/public
. - Open up a terminal and run the following command to set up an http server on port 3002:
python -m http.server 3002
- Access the application by visiting
http://localhost:3002
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. Please use the issue labels/tags accordingly.
- Fork this project.
- Create your new branch:
git checkout -b fe/<issue label>/<issue name>
- Do your changes.
- Stage and commit your changes.
- Push the local branch to the forked remote repo:
git push origin fe/<issue label>/<issue name>
- Navigate to the forked repo using your favourite browser and make a new pull request (PR).