https://github.com/mrinnnmoy/contactbook
An address book where users can store and remove contacts of different users.
https://github.com/mrinnnmoy/contactbook
etherjs hardhat reactjs solidity
Last synced: 4 months ago
JSON representation
An address book where users can store and remove contacts of different users.
- Host: GitHub
- URL: https://github.com/mrinnnmoy/contactbook
- Owner: mrinnnmoy
- Created: 2023-10-30T15:02:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-02T15:03:55.000Z (over 1 year ago)
- Last Synced: 2025-01-09T03:12:30.421Z (5 months ago)
- Topics: etherjs, hardhat, reactjs, solidity
- Language: JavaScript
- Homepage: https://contactbook-demo.netlify.app/
- Size: 279 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ContactBook
An address book where users can stores contacts of different people.
* Users can add names and wallet address of different people.
* Users can also remove names and wallet address of different people.
* Users can get names and wallet address of different people.It helps users to store contacts of different people like a telephone directory.
## Demo Image

## Contributions to this repo are WELCOME ⚡👋
* :art: Any improvements to the design and UI are welcome.
* :hammer: try to break the website by testing it to find any bugs. If you find any, check if there is an issue already open for it, if there is none, then report it.## Tools, Languages and Frameworks used
* React JS
* Ether JS## Steps to be followed in order to make valid contributions to this repo 🍀
**1.** Fork the [contactbook](https://github.com/mrinnnmoy/contactbook) repo by clicking on the fork button on the top of the page. This will create a copy of this repository in your account.
**2.** Clone the forked repository
git clone "https://github.com//contactbook"
* Download and install Node JS v16.16.0
* Download and install Git.
* Go to the terminal of your code editor and run "npm install" to download packages.
* Run "npm run dev" to start a local server.**3.** Make necessary changes and commit those changes.
Remember never push anything to the Main branch.Always change your branch to "develop" using:
git checkout develop
Again check your current branch using:
git branch
It should point \*develop
Now add your changes using:
git add files-you-edited
If there are multiple files you can use:
git add .
Now create a commit message using:
git commit -m ""
**4.** Push changes to GitHub
git push origin develop
**5.** Create a Pull Request 👋
Now you go to your repository on GitHub, you’ll see a `Compare & pull request` button. Click on that button and now write a summary of what changes you have done.( Attach images if required). I will review your code and merge it if it passes all the tests.❤️