This commit is contained in:
Daxeel Soni 2018-01-29 17:55:12 +05:30
commit ea29eca3ce
1 changed files with 8 additions and 15 deletions

View File

@ -1,10 +1,14 @@
<img src="https://img.shields.io/david/dev/expressjs/express.svg"> [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=https%3A%2F%2Ftwitter.com%2Fintent%2Ftweet%3Ftext%3DLearn%20blockchain%2020%20minutes%20-%20https%3A%2F%2Fgithub.com%2Fdaxeel%2Fblockshell)
📖 README.md just includes installation guide. You can find detailed guide in this <a href="https://github.com/daxeel/blockshell/wiki/Get-Started-with-BlockShell" target="_blank">wiki page</a>
# BlockShell # BlockShell
A command line utility for learning Blockchain technical concepts likechaining, mining, proof of work etc. A command line utility for learning Blockchain technical concepts likechaining, mining, proof of work etc.
<img src="https://image.ibb.co/mJFNGw/blockshell.gif"> <img src="https://image.ibb.co/mJFNGw/blockshell.gif">
<img src="https://preview.ibb.co/dhC7yb/Logomakr_5g_Ei_Dw.png" height="80"> <img src="https://preview.ibb.co/dhC7yb/Logomakr_5g_Ei_Dw.png" height="80">
## About ## About
Anyone who wants to understand how blockchain technology works, then <b>BlockShell</b> should be a great start. Because I have created BlockShell keeping blockchain fundamentals in the center of development. With BlockShell you will actually create a tiny blockchain in your system where you can create blocks with data, explore blocks etc. Anyone who wants to understand how blockchain technology works, then <b>BlockShell</b> should be a great start. Because I have created BlockShell keeping blockchain fundamentals in the center of development. With BlockShell you will actually create a tiny blockchain in your system where you can create blocks with data, explore blocks etc.
So, by using BlockShell anyone can learn following blockchain concepts, So, by using BlockShell anyone can learn following blockchain concepts,
@ -13,14 +17,14 @@ So, by using BlockShell anyone can learn following blockchain concepts,
* Mining * Mining
* Proof of Work * Proof of Work
## BlockShell Web Explorer ## 🌐 BlockShell Web Explorer
<p>BlockShell comes with built-in blockchain explorer by which you can actully see how blocks are mined and what is stored and where.</p> <p>BlockShell comes with built-in blockchain explorer by which you can actully see how blocks are mined and what is stored and where.</p>
Latest Mined Blocks | Block Details Latest Mined Blocks | Block Details
:------------------------------:|:-------------------------: :------------------------------:|:-------------------------:
![](https://preview.ibb.co/iZa5jG/Screen_Shot_2018_01_25_at_11_25_22_PM.png) | ![](https://preview.ibb.co/cDB0Jb/Screen_Shot_2018_01_25_at_11_25_35_PM.png) ![](https://preview.ibb.co/iZa5jG/Screen_Shot_2018_01_25_at_11_25_22_PM.png) | ![](https://preview.ibb.co/cDB0Jb/Screen_Shot_2018_01_25_at_11_25_35_PM.png)
## Installation ## 📦 Installation
Step 1 - Create project directory Step 1 - Create project directory
``` ```
mkdir <project_name> && cd project_name mkdir <project_name> && cd project_name
@ -48,7 +52,7 @@ cd blockshell
Step 6 - Install blockshell Step 6 - Install blockshell
``` ```
python setup.py install pip install --editable .
``` ```
Step 7 - Try "blockshell" command and test installation! Step 7 - Try "blockshell" command and test installation!
@ -58,14 +62,3 @@ blockshell
<b>Output in terminal after calling BlockShell command</b> <b>Output in terminal after calling BlockShell command</b>
<img src="https://image.ibb.co/dRqGrw/Screen_Shot_2018_01_25_at_11_21_38_PM.png"> <img src="https://image.ibb.co/dRqGrw/Screen_Shot_2018_01_25_at_11_21_38_PM.png">
## Lanuch BlockShell Web
Step 1 - Start new terminal window, go to cloned directory
Step 2 - Start web.py
```
python web.py
```
Step 3 - Go to 127.0.0.1:5000 address in browser and boom!