https://github.com/atharmohammad/crypto-chain
A Blockchain implementation on Proof of Work where each node can mine transactions , have unique wallet , and all nodes can connect with each other using pubsub implementation via redis server
https://github.com/atharmohammad/crypto-chain
Last synced: 8 months ago
JSON representation
A Blockchain implementation on Proof of Work where each node can mine transactions , have unique wallet , and all nodes can connect with each other using pubsub implementation via redis server
- Host: GitHub
- URL: https://github.com/atharmohammad/crypto-chain
- Owner: atharmohammad
- Created: 2022-01-16T18:00:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-25T12:16:18.000Z (about 4 years ago)
- Last Synced: 2025-07-29T21:36:05.223Z (11 months ago)
- Language: JavaScript
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Crypto Chain
## 🔖 About
### A Blockchain from scratch
- Mining using Proof Of Work
- Synchronization using redis pub/sub
- Auto adjusting difficulty for hash
## 🔥 Getting Started
### Prerequisites
### Installation
- Fork the Repository
```
$ git clone https://github.com//Crypto-Chain.git
$ cd Crypto-Chain
$ git remote add upstream https://github.com/atharmohammad/Crypto-Chain.git
$ npm install
$ redis-server
$ npm run dev # for starting the root node
$ npm run dev-peer # starting other random nodes
```