An open API service indexing awesome lists of open source software.

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

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

- Redis
- Nodejs

### 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
```