Skip to content

nikheelindanoor/ChamaktaSikka

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Logo

Chamakta Sikka

Our own Cryptocurrency

🤔 About Project

Chamakta Sikka is our attempt to create our own Cryptocurrency System from scratch using Blockchains.

👨‍💻 Team members

  • Ravi Maurya
  • Shreyas Penkar
  • Nikheel Indanoor
  • Arnav Ganatra

🙏 Mentors

  • Aditya Patkar
  • Archeel Parekh

🚀 Instructions to run the application (PRODUCTION)

  1. Create a .env file in root directory of the project
REACT_APP_MODE=PRODUCTION
  1. Build the react frontend
npm run build
  1. Create a virtual environment for python, activate the virtual environment.

  2. Install Python libraries

pip install -r requirements.txt
  1. Inside the api/launchapi.txt, change the ports list to number of ports wanted
ports = [5000, 5001]
  1. Launch multiple terminals and run this command on seprate terminals
cd api
python app.py 5000
cd api
python app.py 5001

etc...

  1. Launch one extra terminal and run this command to connect the nodes together
cd api
python launchapi.py

  1. Now in your browser open the ports in different tabs
http://localhost:5000/
http://localhost:5001/

etc...

📃 Description

Chamakta Sikka is our attempt to create our own Cryptocurrency System from scratch using Blockchains. The main aim for our project was to learn how Blockchain and Cryptocurrency works, understand the core concepts and then try to create our own system.

The final product that we have made is a Web Application. Multiple Users running on different local ports would login to the system. Each user will receive a his public and private keys which are generated using RSA. The user can pay amount in csk (our cryptocurrency unit). Paying amount to another user goes into the Mempool. Then at any point of time another user called as the Miner could mine a block. This process takes the transactions from the Mempool and creates and mines a new block into the Blockchain. After this according to the transactions which have been mined in the block, the wallet of each user updates.

🛠 Technology stack

Tools and technologies that you learnt and used in the project.

  1. Frontend - Javascript, ReactJS
  2. Backend - Python
  3. APIs - Flask
  4. SocketIO
  5. Blockchain

👨‍🎓 What did we learn from this project

Here are things we learned during Skill Up 2.0

  1. Ravi Maurya -
    It had been an amazing journey working on this project. The main core of this project is based on Blockchains, so I got to learn Blockchains in deep. We tried to implement everything on our own as we wanted to learn the fundamentals of Blockchain, this means too many bugs and errors, which also means so much to learn from it.
  2. Shreyas Penkar -
    It was awesome working as a leader in this project. I learnt how Blockchains work from scratch giving me a clear understanding of the various moving pieces and concepts regarding Blockchain. I gained many useful skills related to management, leadership, team-work and also got to know a lot about my co-workers. It was fun working with them on this project. So, overall it was a huge success.
  3. Nikheel Indanoor -
    Working in a team teaches you a lot not just about the project but other aspects of team work as well. We tried to implement the cyptocurrency from very basics, so I got to learn about BlockChain and different other concepts of cryptocurrency in detail. Solving different difficulties and bugs along the way helped me to improve on my problem solving skills.
  4. Arnav Ganatra -
    I learnt a lot about blockchains and encryption. I learnt about Rivest-Shamir-Adleman (RSA) encryption and the math behind it. It is a public-key cryptosystem that is widely used for secure data transmission. A public-key system is where the encryption key is public and the decryption key is private. Came accross various protocols and applied them in real fashion.

🔮 Future scope

Here are few things that we want to add in future

  • Increasing Security
  • Mobile App
  • GPU Support for Mining
  • Writing Tests

🎨 Screenshots

Screenshot alt text Screenshot alt text Screenshot alt text Screenshot alt text

About

Making of our own Cryptocurrency from scratch.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 36.2%
  • Python 36.2%
  • CSS 23.4%
  • HTML 4.1%
  • Shell 0.1%