diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..ef76949
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,63 @@
+
Contributors Guide for blockchain⚡
+Welcome to blockchain! Make sure to star this repository😍
We appreciate your interest in contributing.😊
This guide will help you get started with the project and make your first contribution.
+
+---
+
+
+## Creating Your First Pull Request 🌟
+## 1. Star this repository: Show some love by starring the repository!
+## 2. Fork this repository: Click the 'Fork' button at the top right of this page to create a copy of this repository in your account.
+## 3. Clone the forked repository:
+
+```bash
+git clone https://github.com//blockchain.git
+```
+
+## 4. Navigate to the project directory
+
+```bash
+cd blockchain
+```
+
+## 6. Create a new branch (use descriptive branch names
+ feature/ or fix/):
+```bash
+git checkout -b feature/
+```
+
+## 7. Stage your changes and commit (use descriptive commit messages like
+ feat: added new feature or fix: corrected issue):
+```bash
+git add .
+git commit -m "feat: added new feature"
+```
+
+## 8. Push your local commits to the remote repository:
+```bash
+## git push -u origin feature/
+```
+
+## 9. Create a Pull Request (PR):
+ Provide a detailed description of the changes you've made.
+ If it's a UI change, consider adding screenshots for better understanding.
+## 10. Congratulations! 🎉 You've made your contribution.
+
+## Pull Request Review Criteria 🧲
+
+1. Please fill out the PR template properly when creating a pull request.
+2. Assign yourself to the issue you’re working on to help us track progress.
+3. Never commit to the main branch.
+4. Your work must be original and adhere to the project's coding standards.
+5. Comment your code where necessary for clarity.
+6. Always ensure all tests pass before pushing your changes.
+
+
+## Communication and Support 💬
+1. Join the project's communication channels to interact with other contributors and seek assistance.
+2. If you have any questions or need help, don't hesitate to ask in the project's communication channels or comment on the relevant issue.
+
+## Code of Conduct 😇
+Please follow our project's code of conduct while contributing. Treat all contributors and users with respect, and create a positive and inclusive environment for everyone.
+
+## License 📄
+The project is licensed under MIT. Make sure to review and comply with the license terms.